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

android -- 之PopupWindow的使用

时间:2015-09-21 10:34:44      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
View contentView = inflater.inflate(R.layout.popwindow, null);
PopupWindow popupWindow = new PopupWindow(contentView,
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
popupWindow.setBackgroundDrawable(MainActivity.this.getResources()
.getDrawable(R.drawable.ic_launcher));
popupWindow.setFocusable(true);

popupWindow.showAsDropDown(v);

 

技术分享

android -- 之PopupWindow的使用

标签:

原文地址:http://www.cnblogs.com/lzh-Linux/p/4825337.html

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