Android微调文本右对齐

时间:2013-07-25 09:19:01

标签: android spinner

我有一个微调器包含3个项目:“英语”,“简体中文”,“繁体中文” 如果我选择“英语”,则微调器将显示如下图 enter image description here
我的意思是选择并显示所选项目,但不是所有项目列表如下:
enter image description here
我的layout.xml如下:

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent" >

                <Spinner
                    android:id="@+id/spinner1"
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_alignParentRight="true"
                    android:layout_centerVertical="true"
                    android:background="@drawable/spinner_selector"
                    android:gravity="right" />

            </RelativeLayout>

我想将文本右对齐。
但宽度似乎被设定为最长的项目 文本左对齐。
我怎么修改它?

0 个答案:

没有答案