package com.example.avi.myapplication;
import android.app.Activity;
import android.os.Bundle;
import android.widget.RelativeLayout;
import android.widget.EditText;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
RelativeLayout myLayout = new RelativeLayout(this);
EditText myText = new EditText(this);
RelativeLayout.LayoutParams textParams =
new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT);
textParams.addRule(RelativeLayout.CENTER_VERTICAL);
textParams.addRule(RelativeLayout.CENTER_HORIZONTAL);
myLayout.addView(myText, textParams);
setContentView(myLayout);
}
}