我突然出現了滾動查看超出屏幕底部的問題,因此即使您一直向下滾動,它也不會顯示其所有內容。 XML是:滾動查看延伸到屏幕底部以外
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFFFF">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:background="#FFBBBBBB"
android:orientation="vertical" >
<View
android:layout_width="100dp"
android:layout_height="300dp"
android:layout_margin="15dp"
android:layout_gravity="center_horizontal"
android:background="#FFDDDDFF"/>
<View
android:layout_width="100dp"
android:layout_height="300dp"
android:layout_margin="15dp"
android:layout_gravity="center_horizontal"
android:background="#FFDDDDFF"/>
</LinearLayout>
</ScrollView>
它沒有比這更簡單。一旦你滾動一路下跌(由滾動條的形狀所示),你應該看到底部白邊,而是這是什麼樣子:
與頂級比較:
底部應該看起來像頂部,只能顛倒。這發生在模擬器,真實設備以及幾乎所有我試過的Android版本中。我對我在做什麼錯誤感到不知所措(如果有的話......)。
請不要猜測,不要從臀部拍攝!只測試了答案。現在我已經浪費了足夠的時間。謝謝。
一旦確實可以嘗試玩這樣的遊戲,但它是一個黑客,而不是一個真正的解決方案。 – olefevre
PS:在底部看到一些白色,本身並不是目的!由於LinearLayout的所有邊都有餘量,所以看到下邊距是您真正達到底部的信號;就這樣。 – olefevre