我有一些領域的視圖(姓名,電子郵件,密碼,註冊按鈕):如何在鍵盤出現時使android視圖滾動?
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ViewFlipper
android:id="@+id/viewflipper"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
//Layouts
</ViewFlipper>
</ScrollView>
當我專注一個EditText場,鍵盤出現並覆蓋在視圖下方區域。所以當鍵盤出現時我看不到它們。我想知道如何使視圖滾動,以便我可以看到較低的字段。此外,如何自動滾動視圖以使焦點字段可見。
實際上它被設置爲「adjustPan | adjustResize」。取下adjustPan使其工作。謝謝! – Alexis