如何在单行上保持两个TextInputLayouts一致的宽度

时间:2018-07-21 07:56:54

标签: android android-layout android-linearlayout textinputlayout

我在一行上有两个TextInputLayout。渲染时,它们各自占据屏幕的一半: enter image description here

但是,如果我在一个文本中键入很多文本,而在另一个文本中键入的文本较少,则它们的宽度会发生变化,其中一个会变得模糊:

enter image description here

无论输入多少文本,如何保持它们与开始时相同的比例?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    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="wrap_content"
        android:layout_weight="1">

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    </android.support.design.widget.TextInputLayout>

    <android.support.design.widget.TextInputLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1">

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    </android.support.design.widget.TextInputLayout>

</LinearLayout>

2 个答案:

答案 0 :(得分:2)

执行以下操作:

headers=["Authorization:Basic BASE64USER:PASSWORD","Sec-WebSocket-Version: 13","Sec-WebSocket-Key:WEBSOCKETKEY"]
sck = WebSocket(sslopt={"cert_reqs": ssl.CERT_NONE},header=headers, subprotocols=["base64"])

sck.connect("wss://HOST:8001/sap/bc/.../..")

答案 1 :(得分:1)

为TextInputLayout设置android:layout_width="0dp"应该可以解决问题。

此外,您应该使用android.support.design.widget.TextInputEditText而不是EditText