我正在设计如下布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/messageText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Some really long text asd asd asd asd asd asd asd asd asd asd asd" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="12:45 PM" />
</LinearLayout>
它提供了像上面这样的用户界面......
这是我需要的完美。由于方向是水平的,长文本会被正确包装,而不会将 Button 推离屏幕。按钮也没有拉伸。
但是如果文字很小。看起来像这样
我想要的是 Button 应该像这样与文本的左端对齐
我知道我将布局权重设置为 1。
在为按钮提供所需空间后,它会占用整个剩余区域。
如果我不说。并使宽度成为包装内容。它适用于短文本。但随着文本的增长。
它将按钮推离屏幕。
那就是问题所在。希望我对我的问题进行了足够的描述。但当然要读很久。当然是痛苦的。但是会很高兴知道任何指针。
我也不愿意使用相对布局。
任何帮助将不胜感激。
谢谢