1
public class DemoActivity extends FragmentActivity{

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_demo);
}
TextView textView = (TextView) findViewById(R.id.demo1);
textview.setText("hi"); 

textView が認識されず、そのメソッドを使用できないため、続行できません。何が起こっている可能性がありますか?

レイアウトは次のとおりです。

<?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/demo1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

 </LinearLayout>
4

1 に答える 1

2

外れているonCreate()ので認識できないので、入れてくださいonCreate()

public class DemoActivity extends FragmentActivity{

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_demo);
    TextView textView = (TextView) findViewById(R.id.demo1);
    textview.setText("hi"); 

}
于 2013-07-21T00:58:22.660 に答える