我正在处理接收数据的Android应用程序,并应以特定方式显示这些数据。我收到三个字符串(例如A,B和C),我必须以这种方式将它们附加到我自己创建的TextView中:
| A B C |
A必须与左侧对齐,B与中心对齐,C与右侧对齐。 我真的不知道该怎么做; TextView的维度可以更改取决于用于运行应用程序的屏幕大小,但是这些字符串必须位于我在每种可能情况下显示的位置。
感谢您的帮助!
Ps:是否有可能在BOLD中显示这些字符串???
答案 0 :(得分:1)
1)请在linearlayout内使用3xTextView,水平方向
2)LinearLayout android:width="match_parent"
3)在文字视图设置android:layout_gravity
中,A)left
B)center
C)right
4)对于TextView集android:layout_weight=1
加粗textView:
android:textStyle="bold"
答案 1 :(得分:0)
试试这个......
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:weightSum="3" >
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="left"
android:text="Text1"
android:textStyle="bold" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_horizontal"
android:text="Text2"
android:textStyle="bold" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right"
android:text="Text3"
android:textStyle="bold" />
</LinearLayout>