我在一行上有两个TextInputLayout
。渲染时,它们各自占据屏幕的一半:
但是,如果我在一个文本中键入很多文本,而在另一个文本中键入的文本较少,则它们的宽度会发生变化,其中一个会变得模糊:
无论输入多少文本,如何保持它们与开始时相同的比例?
<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>
答案 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
。