zoukankan      html  css  js  c++  java
  • Java动态生成组件

    @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);
    }

  • 相关阅读:
    Python—re模块
    Python—json模块
    Python—sys模块介绍
    Python—os模块介绍
    Python—randonm模块介绍
    Python—time模块介绍
    Python—包介绍
    Python—模块介绍
    Python—装饰器
    jvm、jre、jdk
  • 原文地址:https://www.cnblogs.com/Toring/p/6628296.html
Copyright © 2011-2022 走看看