我有一个Android微调器
<Spinner
android:layout_width="match_parent"
android:layout_height="@dimen/input_height"
android:id="@+id/items"
android:spinnerMode="dialog"
android:prompt="@string/item_prompt"/>
和一个附加的自定义适配器。通过在
中传递自己的布局,我设法使文本居中public View getView(int position, View convertView, ViewGroup parent)
和
public View getDropDownView(final int position, final View convertView, final ViewGroup parent)
但是,似乎无法将提示文本居中。我将如何去做?