有一些问题,试图把在正确的地方的意见(Having some problems trying to

2019-09-28 17:36发布

我在这个XML生成动态tablerows

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:scrollbars="none" >

    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/layoutPrincipal1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:stretchColumns="1">

    </TableLayout>

</ScrollView>

问题是:我想利用重力以具有在特定位置的一些看法,但是当一个限定例如button1.setLayoutParams(新TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT,TableRow.LayoutParams.WRAP_CONTENT,Gravity.CENTER_VERTICAL) ); 这是行不通的,但如果我在XML做到这一点直接它的工作原理(与layout_gravity),有人知道该怎么办?

文章来源: Having some problems trying to put views in the right places