文本在按钮中左右对齐

时间:2015-02-23 11:12:42

标签: android button text justify

我有一个看起来像

的按钮
[1         44.33]

以便文本同时左右对齐。

是否可以使用单个元素实现它,而不引入嵌套的TextView

2 个答案:

答案 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元素。