简体   繁体   English

Android微调器的选定文本对齐方式

[英]Selected text alignment for Android spinner

I am trying to align selected text of a Spinner in Android. 我正在尝试对齐Android中微调框的选定文本。 It should align to the matching indentation of the other TextView and EditText in the layout. 它应与布局中其他TextView和EditText的匹配缩进对齐。

What I have in my layout: 我的布局中有什么:

http://i.imgur.com/Y5sgbsN.png http://i.imgur.com/Y5sgbsN.png

What i want to do: 我想做的事:

http://i.imgur.com/viVHpiC.png http://i.imgur.com/viVHpiC.png

My Layout code: 我的布局代码:

 <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"/>

Please help me out with this UI change. 请帮助我进行此UI更改。

Thanks 谢谢

Update 1: Parent Layout code: 更新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" >

This is the spinnerinflate.xml 这是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 = new MyAdapter(this, R.layout.spinnerinflate, arraylist); MyAdapter myAdapter =新的MyAdapter(this,R.layout.spinnerinflate,arraylist); spinner.setAdapter(myAdapter); spinner.setAdapter(myAdapter);


You can use SimpleAdapter as well if you don't need to have your own adapter as below 如果不需要以下适配器,也可以使用SimpleAdapter

ArrayAdapter<String> simpleadapter = new ArrayAdapter<String>(YourActivityName.this, R.layout.spinnerinflate, getResources().getStringArray(R.array.yourarray));
spinner.setAdapter(simpleadapter);

By this inflate you can do whatever formatting you want. 通过这种膨胀,您可以执行所需的任何格式。 Please let me know if it helps. 请告诉我是否有帮助。

you can use this lines 你可以用这行

<Spinner
    android:id="@+id/spinner1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="left"
    android:paddingLeft="0dp"
    android:textDirection="ltr" />

and you can increase padding from left to more space 您可以从左到右增加填充空间

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM