我有一个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);
尺寸不会改变
答案 0 :(得分:2)
使用此:
t.getLayoutParams().width = 950;