2012-03-22 44 views

回答

1

您應該用ScrollView環繞佈局。

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

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" > 

     <EditText 
      android:id="@+id/editText1" 
      android:layout_width="0dip" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:inputType="text" > 

      <requestFocus /> 
     </EditText> 
    </LinearLayout> 
</ScrollView> 
相關問題