gpt4 book ai didi

android - XML Spinner 属性 textAlignment = "right"API 16

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:54:06 24 4
gpt4 key购买 nike

我正在尝试将属性设置为我的 android 应用程序上的微调器以及 textAlignment = "right" 中的一个属性(问题是我有一个微调器 layout_width= “match_parent” 所以有很多空间,我想把它放在右边)但这只在 API 17 及更高版本中受支持,而我想为 API 16 制作一个应用程序 - 有工作吗-周围?

我的属性是:

        <Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:textAlignment="gravity"
android:id="@+id/MainSpinner"
tools:listitem="@layout/support_simple_spinner_dropdown_item"/>

当前的 linearLayout 看起来像这样:

enter image description here

我希望它看起来像这样:

enter image description here

地点:

LinearLayout(水平)= enter image description here

相对布局 = enter image description here

TextView = enter image description here

线性布局(垂直)= enter image description here

微调器 = enter image description here

按钮 = enter image description here

最佳答案

这对我有用...

<Spinner
android:id="@+id/example_spinner"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="right"
android:textAlignment="right"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="2dp"
android:paddingBottom="2dp" />

我已经关注了这个:http://nevescheng.blogspot.fr/2013/05/spinner-with-item-text-aligned-to-center.html & 这工作得很好......

关于android - XML Spinner 属性 textAlignment = "right"API 16,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39758012/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com