Я новичок в Android Android и Java. Я хочу отобразить текст, но мой код ниже не работает.
DisplayText.java
package com.example.DisplayText;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class DisplayText extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv2 = (TextView) this.findViewById(R.id.thetext);
tv2.setText("YO -- ");
setContentView(R.layout.main);
}
}
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:id="@+id/thetext"
/>
</LinearLayout>
Большое спасибо за любую помощь! :)