其他分享
首页 > 其他分享> > android-微调框下的下划线与EditText的下划线不对齐

android-微调框下的下划线与EditText的下划线不对齐

作者:互联网

我一直在阅读有关SO的文章,但没有一种解决方案可以解决我的问题.
我使用style =“ @ style / Base.Widget.AppCompat.Spinner.Ununderlined添加下划线到Spinner,但出于某种原因,Spinner的基线与EditText不对齐.
这是我的XML

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="5">

    <!-- Phone Country code Spinner -->
    <Spinner
        android:id="@+id/spProfileDetailsUser_phoneNumberCode"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        style="@style/Base.Widget.AppCompat.Spinner.Underlined"
        android:layout_gravity="bottom">
    </Spinner>

    <!--  Mobile Number Label -->
    <android.support.design.widget.TextInputLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp"
        android:layout_weight="4">
        <EditText android:id="@+id/etProfileDetailsUser_phoneNumber"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:inputType="number"
            android:hint="Mobile Number"
            />
    </android.support.design.widget.TextInputLayout>
</LinearLayout>

结果如下:

enter image description here

我曾尝试针对类似问题找到任何解决方案,以使微调器下划线与EditTxt对齐.但是,没有帮助.例如this post.

我正在寻找解决方案或解决方法来解决此问题.

谢谢

解决方法:

只需从TextInputLayout中删除android:layout_marginBottom =“ 8dp”:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="5"
xmlns:android="http://schemas.android.com/apk/res/android">

<!-- Phone Country code Spinner -->
<Spinner
    android:id="@+id/spProfileDetailsUser_phoneNumberCode"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    style="@style/Base.Widget.AppCompat.Spinner.Underlined"
    android:layout_gravity="bottom">
</Spinner>

<!--  Mobile Number Label -->
<android.support.design.widget.TextInputLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    android:layout_weight="4">
    <EditText android:id="@+id/etProfileDetailsUser_phoneNumber"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:inputType="number"
              android:hint="Mobile Number"
        />
</android.support.design.widget.TextInputLayout>

标签:android-spinner,xml,android
来源: https://codeday.me/bug/20191025/1932386.html