Android TableLayout TableRow对齐方式

时间:2014-08-07 23:41:30

标签: android alignment android-tablelayout

我正在使用表格布局来显示数据,如下所示。 enter image description here

我想做什么?

我想将所有内容与最大的内容对齐。如下图所示,Pilot列具有最大的内容。我的意思是它应该是什么样的; enter image description here

代码:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:shrinkColumns="*"
android:stretchColumns="*" >

<TableRow
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <others.TypefaceTextView
        android:id="@+id/txtNo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="1"
        app:customTypeface="fonts/RobotoCondensed-Light.ttf" />

    <others.TypefaceTextView
        android:id="@+id/txtKapi"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="1"
        app:customTypeface="fonts/RobotoCondensed-Light.ttf" />

    <others.TypefaceTextView
        android:id="@+id/txtPilotad"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:maxWidth="115dp"
        android:minWidth="100dp"
        android:text="Y.AVCI"
        app:customTypeface="fonts/RobotoCondensed-Light.ttf" />

    <others.TypefaceTextView
        android:id="@+id/txtSinif"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="S2"
        app:customTypeface="fonts/RobotoCondensed-Light.ttf" />

    <others.TypefaceTextView
        android:id="@+id/txtZaman"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="17:45:5"
        app:customTypeface="fonts/RobotoCondensed-Light.ttf" />

    <others.TypefaceTextView
        android:id="@+id/txtFark"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="17:45:5"
        app:customTypeface="fonts/RobotoCondensed-Light.ttf" />

    <others.TypefaceTextView
        android:id="@+id/txtOndeki"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="17:45:5"
        app:customTypeface="fonts/RobotoCondensed-Light.ttf" />
</TableRow>

1 个答案:

答案 0 :(得分:1)

我想我知道你要做什么。尝试给所有的价值一个重量,使他们留在同一个区域。您可能必须使用重量值来满足您的需求。