答案 0 :(得分:0)
您可以使用垂直线性布局作为具有两个子项的父级。
儿童1 - 体重1的滚动视图
Child 2 - 高度为wrap_content的视图
答案 1 :(得分:0)
你可以在活动中使用片段,如果你正在使用表考虑使用multipane片段,你可以在这里阅读它
答案 2 :(得分:0)
使用此代码中的内容
<?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="match_parent"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="0"
android:layout_weight="3"
android:background="#abc">
<!--some content for scrolling here-->
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0"
android:layout_weight="1"
android:background="#cba">
<!--put other component here-->
</LinearLayout>
</LinearLayout>
这里的ScrollView对于LinearLayout的布局权重为3比1,因此它将占据75%的高度,25%将被赋予LinearLayout