龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 移动开发 > Android开发 >

手写android布局示例

时间:2014-06-12 02:54来源:网络整理 作者:网络 点击:
分享到:
这篇文章主要介绍了手写android布局示例,需要的朋友可以参考下

代码如下:

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

精彩图集

赞助商链接