码迷,mamicode.com
首页 > 移动开发 > 详细

代码实现Layout android:layout_alignParentRight

时间:2014-12-18 16:47:28      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:android   ar   io   sp   on   div   bs   代码   ad   

代码实现Layout android:layout_alignParentRight

例如:

     android:id="@+id/account_option" android:layout_width="20px"
     android:layout_height="20px" android:focusable="true"
     android:src="@drawable/accountoptionbutton"
     android:layout_alignParentRight="true" android:layout_marginRight="25px" />

----------------------------------------------------------------------------------

        RelativeLayout rl =    new RelativeLayout(this);     
        MarginLayoutParams mp = new MarginLayoutParams(20,20);  //item的宽高
        mp.setMargins(0, 0, 25, 0);//分别是margin_top那四个属性
        LayoutParams lp = new LayoutParams(mp);
        lp.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
       
        Button bt = new Button(this);
        bt.setLayoutParams(lp);
        rl.addView(bt);

代码实现Layout android:layout_alignParentRight

标签:android   ar   io   sp   on   div   bs   代码   ad   

原文地址:http://www.cnblogs.com/dongweiq/p/4171919.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!