输入样式不统一

时间:2017-12-24 06:50:58

标签: android layout android-edittext spinner

看看这有多丑:

Imgur

这是我的XML:

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:padding="20dp"
        android:descendantFocusability="beforeDescendants"
        android:focusableInTouchMode="true">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="20dp"
            android:text="Style"
            android:textSize="18sp" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Position" />

        <Spinner
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:entries="@array/array_positions"
            android:layout_marginBottom="20dp" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Icon Color" />

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ems="10"
            android:text="red"/>

    </LinearLayout>

如何制作旋转器和edittext总是看起来一样?我甚至尝试将style="@style/Widget.AppCompat.Spinner.Underlined"添加到微调器中,当它添加底线时,填充和字体大小仍然不同。

0 个答案:

没有答案