我正在尝试设置自定义列表视图布局。我膨胀的布局是这样的:
测试.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>
这看起来很正常:
但是当我将线性布局的方向更改为水平时,它会变得一团糟,看起来像这样:有没有办法解决这个问题或者我在这里做错了什么?
有什么办法可以解决这个问题,或者我在这里做错了什么?