我已经在我的xml布局中定义了一个textview。现在,当我想在活动Java文件中调用此textview时,我不知道该怎么做。你能告诉我怎么做吗?提前感谢。
这是我的xml布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/bubble_sort"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_gravity="left"
android:text=
"hello welome to your first c++ code."/>
</LinearLayout>
这是我的Java文件:
package com.example.cprograms;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class Bubble_sort extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
TextView tv = (TextView) findViewById(R.id.bubble_sort);
}
}
最佳答案
添加这些行
setcontentView(R.layout.yourxmlfile);
和
tv.setText("Hello")
.....
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setcontentView(R.layout.yourxmlfile);
TextView tv = (TextView) findViewById(R.id.bubble_sort);
tv.setText("Hello");
}