微调器项目中的文本对齐

时间:2019-05-14 18:57:07

标签: android spinner

如何将文本移到行附近?像image

1 个答案:

答案 0 :(得分:0)

这非常简单,只需创建一个名为 spinner_item.xml xml 文件,其内容为

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#111111"
android:padding="10dp"
android:textAlignment="center"
/>

现在在您的Java类中,而不是添加android的默认视图资源,而是将您的自定义视图资源添加为

ArrayAdapter<String> adapter= new ArrayAdapter<String>(context, R.layout.spinner_item, myList);
adapter.setDropDownViewResource(R.layout.spinner_item);