📅  最后修改于: 2023-12-03 15:35:02.607000             🧑  作者: Mango
Android Spinner 是一种用于从预定义值列表中选择单个项目的用户界面组件。默认情况下,Spinner 中的项目以文本列表的形式呈现。但是,有时您可能需要通过添加下划线来强调 Spinner 中的项目,使其看起来更具有可读性和可访问性。以下是 Android 中实现这一需求的方法。
要在 Android Spinner 中添加下划线,一种方法是使用自定义布局。这种方法的主要思想是将 Spinner 的每个项目视为一个 LinearLayout 布局,其中包含一个 TextView 和一个 View(下划线)。
首先,创建一个名为 spinner_item.xml 的新布局文件,并在其中添加以下代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:textSize="18sp" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/black" />
</LinearLayout>
然后,在主 XML 布局文件中,将 Spinner 的布局更改为你的自定义布局:
<Spinner
android:id="@+id/spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="true"
android:spinnerMode="dropdown"
android:background="@android:color/white"
android:popupBackground="@android:color/white"
android:entries="@array/your_array_name"
android:prompt="@string/your_prompt_text"
android:layout_margin="@dimen/margin"
android:layout_gravity="center"
android:gravity="center_horizontal"
android:dropDownVerticalOffset="44dp"
android:dropDownHorizontalOffset="10dp"
android:dropDownWidth="match_parent"
android:adapter="@android:layout/simple_spinner_dropdown_item" />
另一种添加下划线的方法是重写 SpinnerAdapter 接口以返回你期望的 View。这种方法比使用自定义布局更具灵活性,但需要进行更多代码编写。
以下是示例代码:
public class SpinnerAdapterWithUnderline extends ArrayAdapter<String> implements SpinnerAdapter {
private Context context;
private ArrayList<String> objects;
public SpinnerAdapterWithUnderline(Context context, int textViewResourceId, ArrayList<String> objects) {
super(context, textViewResourceId, objects);
this.context = context;
this.objects = objects;
}
public View getCustomView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = LayoutInflater.from(context);
View row = inflater.inflate(R.layout.spinner_item, parent, false);
TextView label = row.findViewById(R.id.text1);
label.setText(objects.get(position));
View verticalDivider = row.findViewById(R.id.vertical_divider);
return row;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
return getCustomView(position, convertView, parent);
}
@Override
public View getDropDownView(int position, View convertView, ViewGroup parent) {
return getCustomView(position, convertView, parent);
}
}
在上面的代码中,我们为 SpinnerAdapterWithUnderline 类实现了 getView() 和 getDropDownView() 方法,并在 getCustomView() 方法中添加了下划线。在 getCustomView() 方法中,我们检索了包含下划线的布局,并将其返回到 Spinner 中的每一项。
然后,使用以下代码将 Spinner 设置为使用 SpinnerAdapterWithUnderline:
Spinner spinner = findViewById(R.id.spinner);
ArrayList<String> items = new ArrayList<String>();
items.add("Item 1");
items.add("Item 2");
items.add("Item 3");
SpinnerAdapterWithUnderline adapter = new SpinnerAdapterWithUnderline(this, R.layout.spinner_item, items);
spinner.setAdapter(adapter);
通过实现 SpinnerAdapter 接口来实现添加下划线的方法,您可以获得更高的灵活性,因为您可以根据需要更改布局以满足您的要求。
以上是两种将下划线添加到 Android Spinner 中的方法。你可以根据你的需要选择其中一种或结合使用。无论哪种方式,都可以帮助您使您的 Android 应用程序更加易于使用和易读。