2014-04-18 59 views
2

我有一個非常基本的web視圖的應用程序,這是layout.xml爲什麼我的視圖在顯示鍵盤時無法調整大小?

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 
    <WebView xmlns:android="http://schemas.android.com/apk/res/android" 
     android:id="@+id/webview" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     /> 
</LinearLayout> 

在清單中,我有:

android:windowSoftInputMode="stateVisible|adjustResize" 

在頁面我加載,有一個輸入的頁面底部。當我點擊它時,鍵盤會顯示,但會遮擋它。它是而不是視圖縮小但不滾動的情況,因爲我無法滾動webview以顯示鍵盤可見的輸入。我究竟做錯了什麼?

+0

它還在調整大小嗎?也許你可以使用'adjustPan'來移動它,使得聚焦區域可見? – Szymon

回答

相關問題