在這個應用程序,我想中心項目的微調。我試過android:gravity="center"
,但它不工作?我必須在微調器上添加一個小圖片。我如何做到這一點。請指導我。
res/layout
spinner_layout.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"`
android:layout_width="fill_parent"
android:layout_height="match_parent">`
<Spinner
android:id="@+id/spinner1"
android:layout_width="fill_parent"
android:layout_height="55dp"
android:prompt="@string/spinner_promt"
style="@style/spinnerStyleView"
/>
</LinearLayout>
風格**style.xml**
<style name="spinnerStyleView">
<item name="android:background"> @drawable/notetvbg</item>
<item name="android:textColor">@android:color/darker_gray</item>
</style>`
試試這個http://stackoverflow.com/questions/15299194/how-to-change-the-text-背景顏色的一個打開微調在Android/15299268#15299268 – Pragnani 2013-03-15 10:19:18
不工作...我必須使微調項目中心的微調本身和還想在文本前添加小圖片/圖標@Pragnani – PSK 2013-03-15 10:24:04
對於上面答案中的textview,設置gravity = center來實現這個 – Pragnani 2013-03-15 10:25:31