如何在xml中创建内容,并在Java中更改它的值?
例如:
<TextView
android:text="Hello World!"
android:textSize="50dp"
android:layout_marginTop="27dp"
android:id="@+id/textView"
android:editable="true"
android:enabled="true" />
现在我如何编辑来自&#34; Hello World&#34;在Java中使用其他东西?
答案 0 :(得分:0)
您需要先拥有TextView小部件的句柄
TextView tv = (TextView) findViewById(R.id.textView);
然后设置文本
tv.setText(...)
答案 1 :(得分:0)
关于android man的基本知识,你可以在每个教程中找到它。
这是你可以修改文本视图的文本的方法,在本例中是你的:
((TextView)findViewById(R.id.textView)).setText("some text");