2

実行時にサイズを変更しようとしている textView があります。でもサイズは変わりません。

xml ファイル内のコード

 <TextView
                android:id="@+id/textScreenWidth"
                android:layout_width="100px"
                android:layout_height="wrap_content"
                android:text=""
                android:layout_gravity="center"
                android:textColor="#ff000000"
                android:textStyle="bold"
                android:textSize="12dp"

サイズを変更する OnCreat のコード

TextView t=(TextView) findViewById(R.id.textScreenWidth); 
    t.setWidth(950);

サイズは変わらない

4

1 に答える 1

2

これを使って:

t.getLayoutParams().width = 950;

于 2013-03-03T19:41:27.933 に答える