码迷,mamicode.com
首页 > 其他好文 > 详细

在代码中创建布局的方法

时间:2017-11-11 00:29:28      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:app   frame   效果   rri   tran   back   p2p   decorview   parent   

第一种
imageView = new ImageView(this);
FrameLayout decorView = (FrameLayout) getWindow().getDecorView();
decorView.addView(imageView);
FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) imageView.getLayoutParams();
layoutParams.width = DubDisplay.dip2px(this, 38);
layoutParams.height = DubDisplay.dip2px(this, 38);
layoutParams.gravity = Gravity.BOTTOM | Gravity.END;
layoutParams.setMargins(0, 0, DubDisplay.dip2px(this, 20), DubDisplay.dip2px(this, 20));
imageView.setBackgroundResource(R.drawable.slipping_top);
imageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
user_cash_listview.post(new Runnable() {
@Override
public void run() {
user_cash_listview.requestFocusFromTouch();
user_cash_listview.setSelection(0);
}
});
}
});

第二种
/*lp = new WindowManager.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT,
WindowManager.LayoutParams.TYPE_APPLICATION,
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE// 设置为无焦点状态
| WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, // 没有边界
PixelFormat.TRANSLUCENT);// 半透明效果
lp.gravity = Gravity.BOTTOM;
lp.windowAnimations = R.style.bus_view;
windowManager.updateViewLayout(view, lp);*/

在代码中创建布局的方法

标签:app   frame   效果   rri   tran   back   p2p   decorview   parent   

原文地址:http://www.cnblogs.com/dubo-/p/7816819.html

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