下面是布局文件里的代码,有两个TextView,但是为什么运行后只显示第一个TextView??
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="vertical" > 6 <TextView 7 android:layout_width="match_parent" 8 android:layout_height="match_parent" 9 android:text="第一个TextView"/> 10 11 <TextView 12 android:layout_width="match_parent" 13 android:layout_height="match_parent" 14 android:text="第二个TextView"/> 15 16 </LinearLayout>
解决办法:
android:layout_width="match_parent"
android:layout_height="match_parent"
改成wrap_content吧
时间: 2024-10-02 21:07:41