首页 > 系统 > Android > 正文

手写android布局示例

2020-04-11 11:53:40
字体:
来源:转载
供稿:网友

复制代码 代码如下:

package com.test;

import android.app.Activity;
import android.os.Bundle;
//import android.view.View;
import android.widget.Button;
import android.widget.LinearLayout;
//import android.widget.Toast;

public class Test_javaActivity extends Activity {

        @Override
        public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);

                LinearLayout layout = new LinearLayout(this);
                // layout.setOrientation(LinearLayout.VERTICAL);

                Button button = new Button(this);

                button.setText("Click Me");

                button.setLayoutParams(new LinearLayout.LayoutParams(
                                LinearLayout.LayoutParams.FILL_PARENT,
                                LinearLayout.LayoutParams.WRAP_CONTENT));

/**                button.setOnClickListener(new View.OnClickListener() {
                        @Override
                        public void onClick(View v) {
                                Toast.makeText(Test_javaActivity.this, "Button Clicked",
                                                Toast.LENGTH_LONG).show();
                        }
                });
*/
                layout.addView(button);
                setContentView(layout);
        }
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表