2013-02-09 78 views
4

我正在使用Sherlock操作選項卡,因此具有選項卡的片段活動。不幸的是,當鍵盤出現以下情況:Android軟鍵盤重疊按鈕(屏幕截圖)

enter image description here

鍵盤正下方的第三個文本框重疊兩個按鈕。但是,我希望鍵盤打開時可以看到兩個按鈕。

我已經嘗試了幾件事情:

  • 新增android:windowSoftInputMode="adjustResize"以及android:windowSoftInputMode="adjustPan"向容這三個選項卡的活動
  • 裹滾動視圖,其部分作品讓屏幕上的說明標籤片段要滾動查看的兩個按鈕

這是片段中的XML:

<ScrollView 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" > 

    <LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="#EBEBEB" 
    android:orientation="vertical" > 

    <RelativeLayout 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_marginLeft="10dp" 
     android:layout_marginRight="10dp" 
     android:layout_marginTop="20dp" 
     android:layout_weight="1" 
     android:gravity="right" > 

     <EditText 
      android:id="@+id/TextBox" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:background="#ffffff" 
      android:height="50dp" 
      android:hint="@string/BoxHint" 
      android:paddingLeft="15dp" > 
     </EditText> 

     <TextView 
      android:id="@+id/LocBoxHint" 
      android:layout_width="50dp" 
      android:layout_height="50dp" 
      android:layout_below="@+id/TextBox" 
      android:background="#ffffff" 
      android:gravity="center" 
      android:padding="10dp" 
      android:text="\@" 
      android:textSize="22dp" /> 

     <EditText 
      android:id="@+id/LocBox" 
      android:layout_width="fill_parent" 
      android:layout_height="50dp" 
      android:layout_below="@+id/TextBox" 
      android:layout_toRightOf="@+id/LocBoxHint" 
      android:background="#ffffff" 
      android:hint="Joey&apos;s Pizza" > 
     </EditText> 

     <TextView 
      android:id="@+id/DateTimeBoxHint" 
      android:layout_width="50dp" 
      android:layout_height="50dp" 
      android:layout_below="@+id/LocBoxHint" 
      android:background="#ffffff" 
      android:gravity="center" 
      android:padding="10dp" 
      android:text="#" 
      android:textSize="22dp" /> 

     <EditText 
      android:id="@+id/DateTimeBox" 
      android:layout_width="fill_parent" 
      android:layout_height="50dp" 
      android:layout_below="@+id/LocBox" 
      android:layout_toRightOf="@+id/DateTimeBoxHint" 
      android:background="#ffffff" 
      android:hint="Friday 8pm" 
      android:paddingRight="60dp" 
      android:layout_marginBottom="50dp" /> 

     <ImageButton 
      android:id="@+id/DateTimePicker" 
      android:layout_width="50dp" 
      android:layout_height="50dp" 
      android:layout_alignParentRight="true" 
      android:layout_below="@+id/LocBox" 
      android:onClick="dateTimeButton" 
      android:src="@drawable/ic_menu_today" 
      android:background="#ffffff" /> 

     <LinearLayout 
      android:layout_width="fill_parent" 
      android:layout_height="50dp" 
      android:layout_below="@+id/DateTimeBox" 
      android:orientation="horizontal" 
      android:layout_marginTop="-50dp" > 

      <Button 
       android:id="@+id/infoButton" 
       android:layout_width="fill_parent" 
       android:layout_height="50dp" 
       android:layout_weight="5" 
       android:onClick="infoButton" 
       android:text="i" 
       android:textColor="#ffffff" /> 

      <Button 
       android:id="@+id/Button" 
       android:layout_width="fill_parent" 
       android:layout_height="50dp" 
       android:layout_weight="2" 
       android:onClick="planButton" 
       android:text="@string/Button" 
       android:textColor="#ffffff" 
       /> 
     </LinearLayout> 

    </RelativeLayout> 
</LinearLayout> 

有什麼想法?

+0

檢查這個環節我的朋友[相同的問題]相對佈局線性變化它 (http://stackoverflow.com/questions/14619222/how-當你點擊編輯文本/ 14619386#14619386) – AppleDroid 2013-02-09 05:03:59

回答

1

你的父母佈局是類似於下面的代碼

<?xml version="1.0" encoding="UTF-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/linearLayout1" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:background="@drawable/theme_black_bg" > 

    <LinearLayout 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_above="@+id/bottom_bar" 
     android:layout_below="@+id/top_bar" 
     android:layout_marginTop="15dip" 
     android:gravity="center_horizontal" 
     android:orientation="vertical" > 
     <LinearLayout 
      android:id="@+id/linearlayout" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:background="@drawable/email_edit_bg" 
      android:gravity="center_horizontal" 
      android:orientation="vertical" > 
      <EditText 
       android:id="@+id/LoginEmailAddressEditTextView" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_gravity="center" 
       android:background="@drawable/edit_text_bg" 
       android:ems="2" 
       android:hint="Please enter email" 
       android:paddingLeft="5dip" 
       android:paddingRight="5dip" 
       android:focusable="true" 
       android:focusableInTouchMode="true" 
       android:singleLine="true" 
       android:textColor="@color/label_color_white" 
       android:textColorHint="#FFFFFFFF" 
       android:textSize="12sp" /> 

     </LinearLayout> 
     <ImageView 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_marginBottom="10dip" 
      android:layout_marginTop="10dip" 
      android:background="@drawable/separator_bg" /> 
     <EditText 
      android:id="@+id/LoginPasswordEditTextView" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:background="@drawable/edit_text_bg" 
      android:ems="2" 
      android:hint="@string/hint_password" 
      android:inputType="textPassword" 
      android:paddingLeft="5dip" 
      android:paddingRight="5dip" 
      android:singleLine="true" 
      android:textColor="@color/label_color_white" 
      android:textColorHint="#FFFFFFFF" 
      android:textSize="12sp" /> 

     <Button 
      android:id="@+id/LoginScreenLoginButton" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="10dip" 
      android:background="@drawable/login_btn_selector" /> 
     <ImageView 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_marginBottom="10dip" 
      android:layout_marginTop="10dip" 
      android:background="@drawable/separator_bg" /> 
     <Button 
      android:id="@+id/LoginScreenForgotPasswordButton" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="10dip" 
      android:background="@drawable/forgot_password_btn_selector" /> 
    </LinearLayout> 
    <include 
     android:id="@+id/bottom_bar" 
     android:layout_alignParentBottom="true" 
     layout="@layout/bottom_advertisement_merge_layout" /> 
</RelativeLayout> 
+4

你能解釋爲什麼改變父佈局有助於解決重疊 – 2013-08-14 00:02:40