2014-02-21 61 views
2

我遇到了這個大問題:當我點擊edittext並且鍵盤向上時,鍵盤覆蓋按鈕。我在網上搜索瞭解決方案,但調整了resize,adjustpan不起作用。我也嘗試使用getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);,但不起作用。Android-如何在鍵盤啓動時自動滾動

<?xml version="1.0" encoding="utf-8"?> 
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
     android:id="@+id/scrollView1" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:background="@drawable/sfondo3" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentRight="true" 
     android:isScrollContainer="true" 
    > 

<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:gravity="center_horizontal" > 

    <TextView 
     android:id="@+id/nickname" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentTop="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginTop="200dp" 
     android:text="Inserisci un Nickname:" 
     android:textSize="20dp" /> 

    <Button 
     android:id="@+id/b1" 
     android:layout_width="120dp" 
     android:layout_height="50dp" 
     android:layout_centerHorizontal="true" 
     android:layout_marginTop="350dp" 
     android:text="Accedi" /> 



    <EditText 
     android:id="@+id/editText1" 
     android:layout_width="200dp" 
     android:layout_height="50dp" 
     android:layout_marginTop="250dp" 
      android:windowSoftInputMode="adjustPan" 
     android:layout_centerHorizontal="true" 
     android:ems="10" /> 

    <ImageView 
     android:id="@+id/imageView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentTop="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginTop="20dp" 
     android:src="@drawable/logox" /> 



</RelativeLayout> 
</ScrollView> 

回答

1

您可以嘗試在AndroidManifest.xml文件中聲明windowSoftInputMode如下。當顯示鍵盤時,它會填充強制活動以調整其大小。

<activity android:name="YourActivityName" 
      android:windowSoftInputMode="adjustResize"> 

如果這沒有幫助,你可能想實現this thread提出了一個更復雜的解決方案。

+0

剛剛嘗試過,它不起作用... –