ソース掲示板




すべてから検索

キーワード   条件 表示 現行ログ 過去ログ トピックス 名前 本文

  メンテナンス 前画面に戻る

対象スレッド 件名: 主画面 ( activity_my_listview.xml )
名前: lightbox
処理選択
パスワード

件名 主画面 ( activity_my_listview.xml )
名前 lightbox
コメント
@DIV
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:tools="http://schemas.android.com/tools"
	android:layout_width="match_parent"
	android:layout_height="match_parent" >

	<LinearLayout
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_alignParentBottom="true"
		android:layout_alignParentLeft="true"
		android:layout_alignParentRight="true"
		android:layout_alignParentTop="true"
		android:orientation="vertical" >

		<Button
			android:id="@+id/button1"
			android:layout_width="match_parent"
			android:layout_height="wrap_content"
			android:text="検索" />

		<EditText
			android:id="@+id/editText1"
			android:layout_width="match_parent"
			android:layout_height="wrap_content"
			android:ems="10" >

			<requestFocus />
		</EditText>

		<ListView
			android:id="@+id/listView1"
			android:layout_width="match_parent"
			android:layout_height="224dp"
			android:layout_weight="0.02" />

	</LinearLayout>

</RelativeLayout>
@END