如何强制TableLayout适合整个屏幕?

时间:2014-03-05 00:26:03

标签: android

目前我正在尝试在android中运行时创建一个基本的tablelayout。我已经尝试了Wrap_Content,Match_Parent和设置权重的每个组合,但似乎没有任何效果。

基本上我想要这个:

        Title

文字A * ** * ** * 文字A1

文字B * ** * ** * 文字B1

文字C * ** * ** * 文字C1

* 表示空格(对不起,我无法弄清楚如何格式化)。我想继续这样,它可以水平和垂直填充屏幕。目前我能够使它适合水平屏幕,但底部留下一个大的空白区域。

我的XML是这样的:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/blackboard"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical" >

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="Classes"
    android:textColor="@color/white"
    android:textSize="25sp"
    android:textStyle="bold"
    android:typeface="serif" />
<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:scrollbars="none"
    android:layout_weight="1">
    <TableLayout
        android:id="@+id/displayTableForClasses"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:shrinkColumns="*"
        android:stretchColumns="*" >

</TableLayout>
</ScrollView>

我基本上需要的是一种缩放字体的方法,使其能够垂直填充整个屏幕而不会缠绕。最好的情况是这种情况是让字体大小尽可能大而不会导致环绕,然后增加不同TextView之间的边距,使其填满整个屏幕。

1 个答案:

答案 0 :(得分:1)

您需要先在父布局中更改宽度和高度。 例如,如果您使用RelativeLayout,则需要更改布局属性,如:

android:layout_width="fill_parent"
android:layout_height="fill_parent"

然后在你的TableLayout中,你可以使用

android:layout_width="match_parent"
android:layout_height="match_parent"

使用这个:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="10dp"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1" >

            <TextView
                android:id="@+id/textView1"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="TextView1" />

            <TextView
                android:id="@+id/textView4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="TextView4" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1" >

            <TextView
                android:id="@+id/textView2"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="TextView2" />

            <TextView
                android:id="@+id/textView3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="TextView3" />
        </LinearLayout>
    </LinearLayout>
</LinearLayout>