0
我有這個垂直ScrollView
與標題,子標題,摘要文本,按鈕和頁腳。Android:添加填充底部/頂部後滾動視圖不滾動
一切工作,直到我加入<ScrollView>
:
android:paddingTop="xxxx"
android:paddingBottom="xxx"
android:clipToPadding="false"
在此之後,頁面不會連我可以看到頁腳中被切斷滾動。任何人都可以幫助我嗎?謝謝!!!!
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:fillViewport="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:paddingTop="xxxx"
android:paddingBottom="xxx"
android:clipToPadding="false">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/header"
android:text="header"
android:gravity="center_horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/subheader"
android:layout_below="@+id/header"
android:letterSpacing="-0.04"
android:layout_marginTop="xxx"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/button"
android:layout_below="@id/button"
android:layout_marginTop="xxx"
android:layout_width="xxx"
android:layout_height="xxx"/>
<TextView
android:id="@+id/summary"
android:layout_below="@+id/button"
android:layout_marginTop="xxxx"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/footer"
android:layout_below="@+id/summary"
android:layout_marginTop="xxxx"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>
我只能張貼圖片是這樣的。摘要字符串可能很長,所以我們需要滾動整個頁面。
能否請您發表您的預期輸出的圖像? – FAT
@FerdousAhamed對不起,我不能張貼截圖,但我張貼了一張圖片來解釋。 – Zip
你還沒有關閉scrollview標籤o.O – Rico