0

Textviewクリック時にメイン アクティビティに動的に追加しようとしていButtonます。AVm を実行すると、アプリケーションが予期せず停止したと表示されます。これが私のコードです

public class MainActivity extends Activity {

Button addText = (Button) findViewById(R.id.btnAddText);    
//Creatinag object of RelativeLaout and referencing to Main actvivty layout. 
RelativeLayout rl = (RelativeLayout) findViewById(R.id.rellayout_Id);   
TextView tv ;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

addText.setOnClickListener( new View.OnClickListener() {

    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub
        tv = new TextView(MainActivity.this);
        tv.setText("Dynamix TextView");
        tv.setPadding(2, 15, 0, 0);         
        rl.addView(tv);

    }
});

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

}

4

1 に答える 1