How can I add view bye function, outside of onCreate() in Android ?
My MainActivity.java
public class Main extends Activity {
    static RelativeLayout mainRel;
    static LinearLayout ll;
    static TextView title;
    static Context context;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main); 
        RelativeLayout mainRel=(RelativeLayout) findViewById(R.id.mainRel);
    }
    public static void refresh(){
            LinearLayout ll = new LinearLayout(this); // actually "this" just works in onCreate;
            TextView title = new TextView(this);// actually "this" just works in onCreate;
            ll.setOrientation(LinearLayout.HORIZONTAL);
            ll.addView(title);
            title.setText("TV");
            mainRel.addView(ll);
        }
    }
}
Thanks in advance