我正在尝试在Android中对齐一个旋转器的选定文本。它应该与布局中其他TextView和EditText的匹配缩进对齐。
我的布局是:
http://i.imgur.com/Y5sgbsN.png
我想做的是:
http://i.imgur.com/viVHpiC.png
我的布局代码:
<Spinner
android:id="@+id/spinner1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/TextView01"
android:layout_below="@+id/TextView01"
android:entries="@array/bank_arrays"
android:prompt="@string/bank_prompt"
android:fontFamily="arial,helvetica"
android:hint="@string/bank_prompt"
android:spinnerMode="dialog"
android:ellipsize = "none"/>请帮我解决这个UI改变。
谢谢
更新1:父布局代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="14.5sp"
android:layout_marginLeft="14.5sp"
android:layout_marginRight="14.5sp"
android:layout_marginTop="14.5sp"
tools:context=".RegistrationActivity" >发布于 2014-07-24 10:15:41
这是spinnerinflate.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/spinnertext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#00f5ff"
android:textSize="@dimen/text_size"
android:text="Text Here" >
</TextView>In your code you can set the custom Layout for spinner as MyAdapter myAdapter =新MyAdapter(this,R.layout.spinnerinflate,arraylist);spinner.setAdapter(myAdapter);
如果不需要有自己的适配器,也可以使用SimpleAdapter,如下所示
ArrayAdapter<String> simpleadapter = new ArrayAdapter<String>(YourActivityName.this, R.layout.spinnerinflate, getResources().getStringArray(R.array.yourarray));
spinner.setAdapter(simpleadapter);通过这个膨胀,你可以做任何你想要的格式化。如果有帮助请告诉我。
发布于 2014-07-24 10:29:34
你可以用这行
<Spinner
android:id="@+id/spinner1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:paddingLeft="0dp"
android:textDirection="ltr" />你可以把填充从左边增加到更多的空间
https://stackoverflow.com/questions/24930816
复制相似问题