<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/ll1"
android:textSize="22sp"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="10dp"
android:layout_weight="1"
android:gravity="center"
android:visibility="gone" >
<TextView
android:id="@+id/tv1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableTop="@drawable/img1"
android:gravity="center"
android:text="@string/abc" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical" >
<TextView
android:id="@+id/tv2"
android:textSize="22sp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:gravity="center" />
<TextView
android:id="@+id/tv3"
android:textSize="22sp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableTop="@drawable/iv4"
android:gravity="center"
android:text="@string/ ooo eeee oo oof nn aaaaa tt pppppp yyyy sssssss eeeeeeee iiiiiiiiiii. oo ggggg, eeeeee ttttt ttt yyyyy oo oooo eeeeeeee aag" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:visibility="gone" >
<Button
android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/opz" />
</LinearLayout>
</LinearLayout>
</ScrollView>
滚动条未在布局中查看。 我尝试了可见性和isScrollContainer,但Scrollbar不能正常工作,所以任何人都可以帮我制作这个可滚动的布局。
tv3全文中提到的文字是不可见的,所以我想让它可滚动,以便每个文本都可见。 谢谢你提前。
答案 0 :(得分:0)
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:fadingEdge="vertical|horizontal" >
在xml末尾关闭</ScrollView>
标记,然后再试一次......你没有关闭scrollview标记...
答案 1 :(得分:0)
在LinearLayout中,你已经给出了重量1,这就是为什么它尽可能多地占用空间的原因。所以不需要滚动。
<LinearLayout
android:id="@+id/ll2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical" >
最好使用wrap_content来布局高度并移除重量。这应该是......
<LinearLayout
android:id="@+id/ll2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical" >
答案 2 :(得分:0)
您的嵌套线性布局有layout_weigh =“1”。这与将布局高度设置为fill_parent,使用一个布局填充整个scrollview具有相同的效果。
尝试删除layout_weight属性并将linearlayout高度设置为wrap_content。