我的 XML 中有这个文本视图
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="85dp"
android:text="@string/text"
android:textAppearance="?android:attr/textAppearanceLarge" />
我希望能够从我正在编写的 java 方法中操作它。这是我的第一个安卓应用,所以我不确定。我读过你可以使用
t=(TextView)findViewById(R.id.TextView01);
t.setText("new text");
但是 Eclipse 告诉我 textview 不能被解析为一种类型。我需要导入一些东西吗?