TextView Android

Buat projek baru. Jika belum tahu klik Cara Membuat Projek Baru

Buka file xmlnya . Jika belum tahu letak file xmlnya klik Letak File xml Android

Jika didalam filenya ada isinya hapus isinya terlebih dahulu. Lalu ketik kode berikut;

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/text_view_id"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="Aku Suka Belajar" />
</LinearLayout>

Klik tombol “Design” . Tampilannya seperti ini:

Related posts

guest
0 Comments
Inline Feedbacks
View all comments