- 1
- 0
- 约1.84万字
- 约 16页
- 2017-01-01 发布于河南
- 举报
添加底部菜单
/TerryBlog/archive/2010/06/20/1761411.html
/salam/archive/2011/04/04/2005329.html
/salam/archive/2010/10/21/1857724.html
/salam/archive/2010/11/15/1877512.html#2294894
/article.php?id=1461
private?class?initBottomMenu?extends?TimerTask{??
????????@Override??
????????public?void?run()?{??
????????????Message?msg=new?Message();??
????????????msg.arg1=1;??
????????????handler.sendMessage(msg);??
????????}??
????}??
????/**?
?????*?显示底部菜单?
?????*/??
????public?void?showBottomMenu(){??
????????LayoutInflater?mLayoutInfalter=(LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);??
????????View?menuView=mLayoutInfalter.inflate(R.layout.menu,null);??
????????PopupWindow?mPopupWindow=new?PopupWindow(menuView,LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT);??
??????????
????????mPopupWindow.showAtLocation(findViewById(R.id.main),Gravity.BOTTOM,0,0);??
????}??
}??
?
主界面的布局文件:main.xml
?
[xhtml] view plaincopyprint?
?xml?version=1.0?encoding=utf-8???
LinearLayout?xmlns:android=/apk/res/android??
????android:id=@+id/main??
????android:orientation=vertical??
????android:layout_width=fill_parent??
????android:layout_height=fill_parent??
??????
TextView????
????android:layout_width=fill_parent???
????android:layout_height=wrap_content??
????android:text=底部菜单实例???
????/??
/LinearLayout??
?
底部菜单的布局文件:menu.xml
[xhtml] view plaincopyprint?
?xml?version=1.0?encoding=utf-8???
LinearLayout?xmlns:android=/apk/res/android??
????android:layout_width=fill_parent??
????android:layout_height=fill_parent??
????android:orientation=horizontal??
????android:background=@drawable/menu_back??
????Button??
????????android:id=@+id/menu_ensureButton??
????????android:layout_width=160px??
????????android:layout_height=wrap_content??
????????android:layout_marginTop=5px??
????????android:text=完成??
????/??
????Button??
????????android:id=@+id/menu_cancelButton??
????????android:layout_width=fill_parent??
????????android:layout_height=wrap_content??
????????android:layout_marginTop=5px??
原创力文档

文档评论(0)