android 布局最左边,Android布局:如何保持最右边的文本元素和椭圆化最左边的文本元素?...

你的问题的答案的基础是这样的:

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:orientation="horizontal">

android:id="@+id/variable-size"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:ellipsize="middle"

android:lines="1"

android:singleLine="true"

android:text="short text" />

android:id="@+id/fixed-size"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="center_vertical"

android:ellipsize="none"

android:lines="1"

android:singleLine="true"

android:text="(s)" />

但是……请记住,我改变了LinearLayout的宽度:

android:layout_width="0dp"

android:layout_weight="1"

android:layout_width="wrap_content"

这是答案中非常重要的一部分.

我提供的代码是这样的:

[[short text][(s)]]

[[slightly longer text][(s)]]

[[really long ...ng text][(s)]]

它正确管理椭圆化,但不能引入“空视图”(____).如果我没有更改LinearLayout的layout_width,则椭圆化将正常工作((s)不会被推离屏幕),但文本对齐不正确.它看起来像这样:

[[short text ][(s)]]

[[slightly longer text ][(s)]]

[[really long ...ng text][(s)]]

因此,如果需要“空视图”,则需要实现它(例如),将LinearLayout嵌套在另一个内(并且这次“空视图”将是一个实际的视图).像这样:

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:orientation="horizontal">

android:id="@+id/variable-size"

android:layout_width="0dp"

android:layout_weight="1"

android:layout_height="wrap_content"

android:ellipsize="middle"

android:lines="1"

android:singleLine="true"

android:text="short text" />

android:id="@+id/fixed-size"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="center_vertical"

android:ellipsize="none"

android:lines="1"

android:singleLine="true"

android:text="(s)" />

android:id="@+id/empty_view"

android:layout_width="0dp"

android:layout_height="0dp"

android:layout_weight="1" />

这将给您以下行为:

[[[short text][(s)]]____________]

[[[slightly longer text][(s)]]__]

[[[really long ...ng text][(s)]]]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值