我創建了一個微調,它看起來像更改微調背景
我的佈局文件是:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/round_corners"
android:padding="7dip" >
<Spinner
android:id="@+id/select_city"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:prompt="@string/selectCity" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="14dp"
android:text="@string/City"
android:textColor="@color/dark_grey"
android:textSize="18dp" />
</RelativeLayout>
我想是做微調的背景透明,但仍顯示向下的箭頭。有什麼辦法可以做到這一點?
但灰色漸變仍然存在! – Ankush
這些是9貼片圖像,如果你想使用你的自定義圖像,你可以在你的設計中使用它們 –
我得到這個,但我不能將文本設置爲'Spinner',因爲背景覆蓋了我的文本 –