I am new to Android.I have created a dynamic textview which is displayed on emulator, but i am not adding this textview using addView then how it displayed?
Here is my code:
package com.DynamicTextField;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class DynamicTextFieldActivity extends Activity {
/** Called when the activity is first created. */
private TextView tv ;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
tv = new TextView(this);
tv.setText("Dynamic Text View Test\n");
tv.setTextSize(18);
setContentView(tv);
}
}
What is the best way of adding textview?
Can anyone help!
Thanks.
setContentViewsets the Activity's view to whatever you pass to it. Since you are passing aTextView, that's why it's getting displayed on screen. – triad Feb 23 at 5:44