添加分隔符微调项目

时间:2016-10-03 14:32:34

标签: android

我使用以下代码显示一个微调器:

ArrayAdapter<String> spinnerArrayAdapterFetching = new ArrayAdapter<String>(this,R.layout.spinner, new String[]{"Fetching..."});
RouteSpinner.setAdapter(spinnerArrayAdapterFetching);

layout.xml

<Spinner
    android:layout_marginTop="10dp"
    android:id="@+id/Spinner_Routes"
    android:typeface="monospace"
    android:textStyle="bold"
    android:textColor="#002361"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

spinner.xml

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:maxLines="1"
        android:layout_margin="10dp"
        android:layout_width="match_parent"
        android:textColor="#002361"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:textStyle="bold"
        android:typeface="monospace"
        android:paddingRight="10dp"/>

如何在项目之间获得分隔线?

1 个答案:

答案 0 :(得分:0)

尝试添加

--

在此

下面
<View
    android:layout_width="match_parent"
    android:layout_height="1dp"//change the size for thickness
    android:background="#000"/>//change accordingly for color

在spinner.xml中