LayoutWeights没有正确缩放元素

时间:2017-01-13 14:07:08

标签: java android android-layout android-linearlayout

我正在尝试使用layout_weightEditText字段右侧显示一个按钮。

但是,这就是:

enter image description here

有没有办法让编译后的版本看起来像我的设计视图?

这是我的设计视图

enter image description here

这是我的布局代码:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:padding="10dp"
android:scrollbars="none"
tools:context="com.mycomapany.myapp.Views.MasterDetails.VehicleFragment">


<LinearLayout
android:id="@+id/llMainView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">


../// OTHER ELEMENTS

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

<android.support.design.widget.TextInputLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_weight="2"
    android:hint="VIN">

    <android.support.design.widget.TextInputEditText
        android:id="@+id/editVIN"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginEnd="5dp"
        android:background="@color/COLOR_TXI_GREY"
        android:imeOptions="actionDone"
        android:inputType="text"
        android:maxLength="17"
        android:maxLines="1"/>
</android.support.design.widget.TextInputLayout>

<ProgressBar
    android:id="@+id/pbCheckVIN"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:visibility="gone"/>

<Button
    android:id="@+id/btnScanVIN"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:background="@color/COLOR_TXI_BLUE"
    android:text="SCAN"
    android:textColor="@color/COLOR_TXI_WHITE"
    android:textStyle="bold"/>
</LinearLayout>


../// OTHER ELEMENTS

</LinearLayout>

2 个答案:

答案 0 :(得分:2)

这只是一个简单的答案,只需删除 TextInputEditText 背景并提及它

  

Java   android:background =“ @ android:color / transparent”

答案 1 :(得分:0)

尝试从android:layout_marginEnd="5dp"

中删除TextInputEditText属性