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

    Log.v("LoginApp","输入用户姓名为:Toring");//日志记录,在控制台打印
    LinearLayout linearLayout = new LinearLayout(this);
    linearLayout.setOrientation(1);  //一行行显示
    setContentView(linearLayout);
    TextView textView = new TextView(this);
    textView.setText("用户名:");
    linearLayout.addView(textView);

    EditText editText = new EditText(this);
    linearLayout.addView(editText);

    TextView textView1 = new TextView(this);
    textView1.setText("密码:");
    linearLayout.addView(textView1);

    EditText editText1 = new EditText(this);
    linearLayout.addView(editText1);

    Button button = new Button(this);
    button.setText("登陆");
    linearLayout.addView(button);
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-05-11
  • 2021-06-05
  • 2021-07-07
  • 2022-12-23
猜你喜欢
  • 2022-03-04
  • 2022-12-23
  • 2022-01-24
  • 2021-09-21
  • 2022-12-23
  • 2021-09-17
  • 2021-11-01
相关资源
相似解决方案