安卓 控件属性填不进去,如何简单解决
Eclipse可视化主窗体中,拖进一控件 textView1,
要改变字体大小,需填属性TextSize为30sp或40dp,
但发现根本填不进去。
但只好在它的XML中加上一行
android:textSize=""
即:
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="@string/hello_world"
android:textSize="30sp" />
这才发现 控件 textView1的属性textSize可以手工填入了,
有没有简单的办法解决这一问题?