カスタム リストビュー レイアウトの設定を試しています。私が膨らませるレイアウトは次のとおりです。
test.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="wrap_content"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello 2"
/>
</LinearLayout>
これは次のように正常に見えます。
しかし、線形レイアウトの向きを水平に変更すると、混乱して次のようになります。これを修正する方法はありますか、それともここで何が間違っていますか?
これを修正する方法はありますか、それともここで何が間違っていますか?