如何使用Java Code设置TextView属性,如width,height?
答案 0 :(得分:7)
在您为视图充气的活动中,您可以使用
抓取TextView
TextView t = (TextView)findViewById(R.id.myTextView);
其中myTextView
是您在XML中声明的id
。
现在继续t.setText("Something");
,t.setWidth(200)
,...
答案 1 :(得分:2)
这里有所有TextView
方法:
http://developer.android.com/reference/android/widget/TextView.html
如果您阅读完整页面,那么您将成为TextView
大师。