2015-02-23 228 views
0

我有一個按鈕,它應像文本左對齊,右一個按鈕

[1   44.33] 

,使文本對齊,同時左,右。

是否有可能實現它與一個單一的元素,沒有介紹嵌套TextView s?

+0

它的一個單一的按鈕或你想開關?如果你提供你想要的截圖,那更好。 – 2015-02-23 11:13:30

+0

沒有開關。 plain

+1

我不相信有任何標準的方法來做到這一點。但是,您可以在數字值之間添加內置選項卡,以便在單個按鈕中始終保持它們之間的空間。 – 2015-02-23 11:14:29

回答

1

對於Button,您可以將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" /> 
+0

抱歉,中間不應顯示橢圓點。更新了我原來的問題 – injecteer 2015-02-23 12:37:07

1

是的,您可以檢查按鈕標籤中的ellipsize元素。

相關問題