滚动条不起作用?
<ScrollView
android:id="@+id/sv_chat"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/layout_bottom"
android:background="#ffffffff" >
<LinearLayout
android:id="@+id/layout_chatrecord"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="bottom"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>
如果我在 LinearLayout
中添加 android:layout_gravity="bottom"
,则 ScrollView
无法工作。 当我一直将视图放入LinearLayout
中时,视图将从下向上出现,这是我想要的。而结果是ScrollView
无法工作,视图将首先看不到,怎么解决?
<ScrollView
android:id="@+id/sv_chat"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/layout_bottom"
android:background="#ffffffff" >
<LinearLayout
android:id="@+id/layout_chatrecord"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="bottom"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>
If I add android:layout_gravity="bottom"
in the LinearLayout
, the ScrollView
can't work.
When I put view in LinearLayout
all the time,the view will appear from the bottom up which is I want.While the result is ScrollView
can't work,the view put first can't be seen.How to solve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个..
Try this..