You are on page 1of 1

main xml

<?xml version="1.0" encoding="utf-8"?>


<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
andorid:text="@string/hello"
/>

<TextView
android:layout_width="wrap_content"
andorid:text="@+id/textView1"
android:layout_height="wrap_content"
andorid:text="@string/top"></TextView>

</LinearLayout>

strings.xml
<resources>
<string name="action_setting">Settings</string>
<string name="hello">Contoh penggunaan TextView</string>
<string name="app_name">Tesk1</string>
<string name="top">TextView berhasil di tampilkan</string>
</resources>

You might also like