因此,我试图填充一个微调下拉列表,但我有一个问题,我得到的颜色。
这是我的旋转器代码:
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:textColor="@color/white"
android:textSize="@dimen/input_text"
android:background="@drawable/abc_spinner_mtrl_am_alpha"/>
下面是我的下拉列表:
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="15dp"
android:textColor="@color/white"
android:background="@color/clickable_bg"
android:textAlignment="center"/>
适配器分配的java代码如下:
ArrayAdapter<String> adapter = new ArrayAdapter(
this,
R.layout.custom_spinner,
getResources().getStringArray(R.array.muscle_groups)
);
adapter.setDropDownViewResource(R.layout.custom_spinner_dropdown);
spinner.setAdapter(adapter);
我得到的是:
电流下降
我不想要那些白色的上下边框。我能做什么?
暂无答案!
目前还没有任何答案,快来回答吧!