2013-02-06 14 views

cevap

0

çek bu açıktır dışarı:

<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

Kullanım sizin EditText aşağıdaki stili: Örneğin style="?android:attr/spinnerStyle"

:

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

+0

Kolay ve tam olarak aradığım şey. Teşekkürler! – David