0
<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
無法正常工作,但放在第一位的視圖無法看到。如何解決?滾動條不起作用?
的xmlns:安卓= 「http://schemas.android.com/apk/res/android」 不需要與LinearLayout中。 – himanshu
好的himanshu感謝您糾正我 – Shruti
它適用於從LinearLayout到ScrollView的android:layout_gravity =「bottom」。 – user898366