我有一个看起来像
的按钮[1 44.33]
以便文本同时左右对齐。
是否可以使用单个元素实现它,而不引入嵌套的TextView
?
答案 0 :(得分:1)
您可以将ellipsize
设置为middle
并将singleLine
设置为true
以获取按钮。
<Button
android:id="@+id/desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="so that the text is aligned to left and right at the same time.Is it possible to achieve it with a single element, w/o introducing nested TextViews?"
android:textColor="#888686"
android:ellipsize="middle"
android:singleLine="true"
android:textSize="15dp" />
答案 1 :(得分:1)
是的,你可以检查Button Tag中的ellipsize元素。