你好,我在我的文件上顯示了一堆文本。我使用Hello World演示來插入此文本。現在每當我嘗試編輯main.xml時,都不會發生。如果有人知道爲什麼這很酷,但我想知道如何添加簡單的滾動到我的文本。我不認爲我需要使用main.xml。有什麼方法可以將它添加到我的項目中?Android中的Main.xml
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class manifesto extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//Make a new text view passing Activity object
TextView tv = new TextView(this);
//Set a text into view
tv.setText("A bunch of text.");
tv.setTextSize(12);
//set the view into activity view container
setContentView(tv);
}
}
這裏是XML文件,如果你想看到它。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:text="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@string/hello"></TextView>
</LinearLayout>
OK我刪除項目的一切,只是main.xml中下轉移的一切。它現在不顯示。我究竟做錯了什麼?我刪除了所有這些代碼 TextView tv = new TextView(this); //設置文本到視圖 tv.setText(「一堆文本。」); tv.setTextSize(12); //將視圖設置爲活動視圖容器 setContentView(tv); } }並將我的一堆文本添加到
user458474
2010-09-26 02:53:02
確保它是'android:text',而不是AndroidText。否則,我不知道什麼是錯的,你還沒有發佈足夠的代碼來告訴我。 – 2010-09-26 03:00:30
這就是我所有的代碼,這是一個非常簡單的項目,我只想顯示一堆文本並讓它滾動。使用基本的Hello World應用程序演示。 – user458474 2010-09-26 03:41:12