2012-10-03 31 views
0

列表視圖內容具有編輯文本和文本視圖。列表視圖內容動態加載時輸入listview編輯文本的底部,編輯文本填充未顯示。虛擬鍵盤覆蓋編輯文本。列表視圖contented editedtext typting coverd by keyboard

我也有在活動中使用此代碼:

getWindow().setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS); 

我用adjustpan,調整大小,statevisible清單文件,但什麼也沒changed.But它將完美的工作在4.0以下。

customlist.xml作爲

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" android:layout_weight="1" 
    android:layout_height="match_parent" > 

    <View 
     android:id="@+id/view" 
     android:layout_width="2dp" 
     android:layout_height="fill_parent" 
     android:layout_centerInParent="true" 
     android:background="@android:color/transparent" /> 

    <EditText 
     android:id="@+id/textView21" 
     android:layout_width="341dp" 
     android:layout_height="60dp" 
     android:layout_alignParentBottom="true" 
     android:layout_weight="1" 
     android:layout_centerVertical="true" 
     android:layout_marginRight="20dp" 
     android:layout_toRightOf="@+id/view" 
     android:background="@drawable/txt1" 
     android:hint="Enter Value" 
     android:layout_marginBottom="8dp" 
     android:layout_marginTop="8dp" android:imeOptions="flagNoExtractUi" 
     android:focusable="true" 
     android:paddingLeft="10dp" android:paddingRight="5dp" 
     android:paddingTop="5dp" android:singleLine="true" 
     android:paddingBottom="5dp" 
     android:textSize="25dp" 
     android:textColor="@color/app_text_color" 
     /> 

    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_centerVertical="true" 
     android:layout_marginRight="20dp" 
     android:layout_toLeftOf="@+id/view" 
     android:paddingBottom="5dp" 
     android:paddingLeft="10dp" 
     android:paddingTop="5dp" android:textSize="25dp" 
     android:text="Large ryw4rtb " 
     android:textAppearance="?android:attr/textAppearanceLarge" 
     android:textColor="@color/app_text_color" 
     /> 

</RelativeLayout> 

和main.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:layout_marginBottom="5dp" android:id="@+id/sceen" 
    android:background="@drawable/full_bg" 
    android:orientation="vertical" > 

    <include 
     android:id="@+id/titleLayout" 
     layout="@layout/title" /> 

    <LinearLayout 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:orientation="horizontal" > 

     <LinearLayout 
      android:id="@+id/left" 
      android:layout_width="326dp" 
      android:layout_height="fill_parent" 
      android:background="@drawable/left_bg" > 

      <ListView 
       android:id="@+id/list" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_marginLeft="20dp" 
       android:layout_marginRight="20dp" 
       android:layout_marginTop="20dp" 
       android:background="@drawable/left_table_bg" 
       android:cacheColorHint="#00000000" 
       android:transcriptMode="alwaysScroll" 
       android:layout_weight="1" 
       android:divider="@drawable/left_table_line" 
       android:paddingLeft="5dp" 
       android:paddingRight="5dp" > 
      </ListView> 
     </LinearLayout> 

     <RelativeLayout 
      android:id="@+id/lay_healthy" 
      android:layout_width="wrap_content" 
      android:layout_height="fill_parent" 
      android:layout_marginBottom="5dp" 
      android:background="@drawable/right_side_bg" > 
<RelativeLayout 
      android:id="@+id/lay_healthy1" android:layout_above="@+id/btn" 
      android:layout_width="wrap_content" 
      android:layout_height="fill_parent" 
      > 

      <ListView 
       android:id="@+id/listView1" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 

       android:layout_weight="1" 
       android:layout_alignParentTop="true" 
       android:layout_marginLeft="10dp" 
       android:layout_marginRight="10dp" 
       android:layout_marginTop="10dp" 
       android:background="@drawable/available_right_bg" 
       android:cacheColorHint="#00000000" 
       android:padding="20dp" /> 

      <ListView 
       android:id="@+id/listView2" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 

       android:layout_alignParentTop="true" 
       android:layout_marginLeft="10dp" 
       android:layout_marginRight="10dp" 
       android:layout_marginTop="10dp" 
       android:background="@drawable/available_right_bg" 
       android:cacheColorHint="#00000000" 
       android:padding="20dp" 
       android:visibility="gone" /> 

      <ListView 
       android:id="@+id/listView3" 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 

       android:layout_alignParentTop="true" 
       android:layout_marginLeft="10dp" 
       android:layout_marginRight="10dp" 
       android:layout_marginTop="10dp" 
       android:background="@drawable/available_right_bg" 
       android:cacheColorHint="#00000000" 
       android:padding="20dp" 
       android:visibility="gone" /> 
      </RelativeLayout> 



     <RelativeLayout 
       android:id="@+id/btn" 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:layout_above="@+id/btn1" 
       android:layout_alignParentBottom="true" 
       android:layout_marginBottom="20dp" 
       android:layout_marginTop="10dp" > 

       <Button 
        android:id="@+id/button1" 
        android:layout_width="200dp" 
        android:layout_height="57dp" 
        android:layout_alignParentLeft="true" 
        android:layout_marginBottom="10dp" 
        android:layout_marginLeft="160dp" 
        android:background="@drawable/bt_submit" /> 

       <Button 
        android:id="@+id/button2" 
        android:layout_width="200dp" 
        android:layout_height="57dp" 
        android:layout_alignParentRight="true" 
        android:layout_marginBottom="10dp" 
        android:layout_marginRight="160dp" 
        android:background="@drawable/bt_reset" /> 
      </RelativeLayout> 

      <RelativeLayout 
       android:id="@+id/btn1" 
       android:layout_width="fill_parent" 
       android:layout_height="20dp" 
       android:layout_alignParentBottom="true" > 
      </RelativeLayout> 
       </RelativeLayout> 
    </LinearLayout> 

</LinearLayout> 

請幫我解決這個問題。

+0

試試這個: http://stackoverflow.com/questions/15317157/android-adjustpan-not-working-after- the-first-time/15896264#15896264 –

回答

0

嘗試在宣佈您的活動的清單中添加此項。

 <activity android:name=".YourActivity" 
    android:windowSoftInputMode="stateHidden"/> 
+0

謝謝,但佈局沒有任何變化,編輯文本不可見時,我在底部編輯文本中鍵入。 –

+0

用'adjustResize'取代'stateHidden' – mukesh

+0

我試過用android:windowSoftInputMode =「stateVisible | adjustResize | adjustPan」,但沒有任何改變。 –

0

除了EditText你填寫,你肯定會有像HeaderButton等,

所以另一種觀點,

軌道,如果軟鍵盤打開並使這些視圖可見性消失,並在軟鍵盤被解除/隱藏時使其可見

沒有直接的方式來跟蹤軟鍵盤顯示/隱藏ARD,因此使用此代碼,我用我的應用程序:

//your_button is the layout of your button view or a header view. if its just a view cast it to 

//appropriate Class 
final LinearLayout your_button = (LinearLayout) findViewById(R.id.your_button); 
//activityRootView is the Layout you are using for the Activity 
final View activityRootView = findViewById(R.id.layout_parent); 
activityRootView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { 
      @Override 
public void onGlobalLayout() { 
    int heightDiff = activityRootView.getRootView().getHeight() - activityRootView.getHeight(); 
    if (heightDiff > 100) { // if more than 100 pixels, its probably a keyboard... 

    your_button.setVisibility(Visibility.GONE); 
    }else{ 

    your_button.setVisibility(Visibility.VISIBLE); 
     } 
    } 
}); 
+0

我需要在打字時顯示編輯文本,但它會隱藏。 –