我已經在我的xml佈局中定義了一個textview。現在當我想在我的活動Java文件中調用這個textview時,我不知道該怎麼做。你能告訴我該怎麼做嗎?提前Thanx。在您的活動中定義文本視圖
這裏是我的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);
}
}
你想在textView中做什麼? – Anu
我只是顯示一些文字。沒有別的 – user1977768
得到了答案? – Anu