У меня есть файл макета, такой как test.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/test_string" />
</RelativeLayout>
и файл Java, подобный этому.test1.java
public class test1 extends Activity {
String temp="This is String"; //which change dynamically
TextView tempview;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
tempview=(TextView)findViewById(R.id.test_string);
tempview.setText(temp);
setContentView(R.layout.test);
}
}
Я пытаюсь показать значение temp в активности, как показано выше.но это бросает NullPointerException
.так как делать.как установить значения sting.xml ???заранее спасибо ..