実行時にサイズを変更しようとしている 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);
サイズは変わらない