我在名为 game.xml 的布局文件夹中创建了一个新的 .xml 文件。它包含一个 TextView。
是否可以在我的主要活动中位于 game.xml 中的 textview 上设置文本?
game.xml(文本视图部分)
<TextView
android:id="@+id/tV1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imageView1"
android:layout_centerVertical="true"
android:text="TextView" />
MainActivity.java
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setImageArray();
String actualword = chooseWord(words);
createLetterArray(actualword);
TextView textView1 = (TextView) findViewById(R.id.tV1); //get a reference to the textview on the game.xml file.
textView1.setText(actualword);
}
...
我试过这样。但它不起作用。谁能帮助我?