问题图片点击这里
我的布局与屏幕不匹配如何解决此问题?谢谢你的帮助。我正试图显示我的数据 ViewModel
.
这里是我的xml代码
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/detailTopText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView" />
<ImageView
android:id="@+id/detailImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:src="@drawable/ic_launcher_background" />
<TextView
android:id="@+id/detailDesText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView2" />
</LinearLayout>
</ScrollView>
3条答案
按热度按时间2exbekwf1#
这是你的新布局
lyfkaqu12#
尝试在线性布局中设置边距顶部
4urapxun3#
可以将具有操作栏大小的paddingtop或margintop属性添加到
ScrollView
```