2014-02-27 51 views
0

我想創建一個xml文件,如下圖所示。如何使用EditText顯示微調,如下圖所示? enter image description here其中All Category是一個微調器,並附加到它是一個EditText。我該如何實現這個目標?如何在android中顯示微調器和EditText?

+0

你需要創建自定義操作欄... –

+0

@AnilBhatiya任何教程一樣嗎? – user2699728

+0

http://www.sanfoundry.com/java-android-program-add-custom-view-actionbar/ –

回答

0

你可以按照這個佈局結構...

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" > 

    <Spinner 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" /> 

    <EditText 
     android:layout_width="0dip" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:hint="Search" /> 

</LinearLayout> 
相關問題