如何将文本移到行附近?像image
答案 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);