如何在横向模式下使用tablelayout填充所有屏幕?

时间:2017-06-05 16:47:05

标签: java android tablelayout android-tablelayout landscape-portrait

我在申请表上使用了TableLayout。这是我的XML代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:scrollbars="none">

<include
    android:id="@id/action_bar"
    layout="@layout/actionbar_toolbar" />

<HorizontalScrollView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/action_bar">

    <ScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <TableLayout
            android:id="@+id/table"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

        </TableLayout>
    </ScrollView>
</HorizontalScrollView>

然后,我用Java代码填充表格:

   TableRow tbrow = new TableRow(this);
    TextView txt_plazo = new TextView(this);
    txt_plazo.setText(" Plazo ");
    txt_plazo.setTextColor(Color.WHITE);
    txt_plazo.setTextSize(16);
    txt_plazo.setMinimumHeight(0);
    txt_plazo.setBackgroundColor(Color.DKGRAY);
    txt_plazo.setGravity(Gravity.CENTER);
    tbrow.addView(txt_plazo);

    TextView txt_saldoInicial = new TextView(this);
    txt_saldoInicial.setText(" Saldo Inicial");
    txt_saldoInicial.setTextColor(Color.WHITE);
    txt_saldoInicial.setTextSize(16);
    txt_saldoInicial.setBackgroundColor(Color.DKGRAY);
    txt_saldoInicial.setGravity(Gravity.CENTER);
    tbrow.addView(txt_saldoInicial);

    TextView txt_parcialidades = new TextView(this);
    txt_parcialidades.setText(" Parcialidades ");
    txt_parcialidades.setTextColor(Color.WHITE);
    txt_parcialidades.setTextSize(16);
    txt_parcialidades.setBackgroundColor(Color.DKGRAY);
    txt_parcialidades.setGravity(Gravity.CENTER);
    tbrow.addView(txt_parcialidades);

    TextView txt_interes = new TextView(this);
    txt_interes.setText(" Interés ");
    txt_interes.setTextSize(16);
    txt_interes.setBackgroundColor(Color.DKGRAY);
    txt_interes.setGravity(Gravity.CENTER);
    txt_interes.setTextColor(Color.WHITE);
    tbrow.addView(txt_interes);

    TextView txt_total = new TextView(this);
    txt_total.setText(" Abono Capital");
    txt_total.setTextSize(16);
    txt_total.setBackgroundColor(Color.DKGRAY);
    txt_total.setGravity(Gravity.CENTER);
    txt_total.setTextColor(Color.WHITE);
    tbrow.addView(txt_total);

    table.addView(tbrow);
    fillTable();

等等...

一切正常,但我试图以横向模式查看表格,问题是表格没有填满所有屏幕。在纵向模式下看起来不错。

landscape mode

portrair mode

P.D:android:shrinkColumnsandroid:stretchColumns不适合我。

1 个答案:

答案 0 :(得分:0)

对视图使用match_parent。