このコードの間違いは何ですか。このアプローチ方法が正しいかどうか教えてください。
リスト項目をロードすると、リストが画面全体ではなく検索バーまで拡大されます。私にアドバイスしてください。
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="#000044">
<TableRow>
<EditText
android:id="@+id/txtUserName"
android:width="270dp" />
<Button
android:id="@+id/Search_button"
android:width="50dp" />
/>
</TableRow>
<TableRow>
<ListView
android:id="@+id/Service_name_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</TableRow>
</TableLayout>
また、これはすべての画面で機能するかどうかも教えてください。