我在底部添加滾動視圖和一個按鈕。我得到的問題是我的按鈕隱藏了scrollview的最後部分。這裏是我的XML代碼..底部按鈕覆蓋滾動視圖的一部分
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/light_gray">
<ScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
.
.
Code for some cardviews
.
.
.
.
</RelativeLayout>
</ScrollView>
<Button
android:layout_width="match_parent"
android:layout_height="60dp"
android:text="5000/- CHECKOUT"
android:textColor="@color/white"
android:textSize="25dp"
android:layout_alignParentBottom="true"
android:background="@color/orange"/>
</RelativeLayout>
這裏的私人教練我已經爲社區成員一個更cardview,這是沒有顯示..後任何人可以幫助我解決這個問題? 感謝提前:)
非常感謝你:) :)你是一個救世主...... – Newbiee