2013-02-06 27 views

回答

0

檢查這出:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

    <EditText 
     android:id="@+id/editText1" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:ems="10" 
     android:drawableRight="@drawable/apple"> 

     <requestFocus /> 
    </EditText> 

</LinearLayout> 
20

使用下面的風格在EditTextstyle="?android:attr/spinnerStyle"

例如:

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="?android:attr/spinnerStyle" />

+0

簡單,正是我在找的東西。謝謝! – David