Android创建布局按钮

public void onCreate(Bundle savedInstanceState) {
     super .onCreate(savedInstanceState);
     //确定界面的布局
     AbsoluteLayout abslayout= new AbsoluteLayout ( this );
     setContentView(abslayout);
     //创建一个button按钮
     Button btn1 = new Button( this );
     btn1.setText(” this is a button”);
     btn1.setId( 1 );
     //确定这个控件的大小和位置
     AbsoluteLayout.LayoutParams lp1 =
     new AbsoluteLayout.LayoutParams(
     ViewGroup.LayoutParams.WRAP_CONTENT,
     ViewGroup.LayoutParams.WRAP_CONTENT,
     0 , 100 );
     abslayout.addView(btn1, lp1 );
 
}

2. [代码]一个界面可以布置一个布局,可以多个布局一起设计     

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
public void onCreate(Bundle savedInstanceState) {
     super .onCreate(savedInstanceState);
 
     //设置界面的布局
     RelativeLayout relativeLayout = new RelativeLayout( this );
     setContentView(relativeLayout);
 
     //添加一个AbsoluteLayout子布局,并给这个布局添加一个button
     AbsoluteLayout abslayout= new AbsoluteLayout ( this );
     abslayout.setId( 11 );
     Button btn1 = new Button( this );
     btn1.setText(” this is a abslayout button”);
     btn1.setId( 1 );
     AbsoluteLayout.LayoutParams lp0 = new AbsoluteLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
     ViewGroup.LayoutParams.WRAP_CONTENT, 100 , 0 );
     abslayout.addView(btn1, lp0 );
     //将这个子布局添加到主布局中
     RelativeLayout.LayoutParams lp1 = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
     lp1.addRule(RelativeLayout.ALIGN_PARENT_TOP);
     lp1.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE);
     relativeLayout.addView(abslayout ,lp1);
 
     //再添加一个子布局
     RelativeLayout relativeLayout1 = new RelativeLayout( this );
     Button btn2 = new Button( this );
     btn2.setText(” this is a relativeLayout1 button”);
     btn2.setId( 2 );
     RelativeLayout.LayoutParams lp2 = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
     lp2.addRule(RelativeLayout.ALIGN_PARENT_TOP);
     lp2.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE);
     relativeLayout1.addView(btn2 ,lp2);
 
     //将这个布局添加到主布局中
     RelativeLayout.LayoutParams lp11 = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
     lp11.addRule(RelativeLayout.BELOW , 11 );
     relativeLayout.addView(relativeLayout1 ,lp11);
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值