アットウィキロゴ

KS5 > Android > 10_activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	android:background="#00ff00"
	android:text="@string/tv_inputname"/>

<EditText 
    android:id="@+id/et_name"
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	android:inputType="text"/>

<Button 
	android:id="@+id/bt_next"
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	android:text="@string/bt_next"/>

</LinearLayout>
最終更新:2013年07月29日 17:17