随笔分类 -  Android View

Android View
修改 AlertDialog 的大小
摘要:最近在项目中用到了AlertDialog, 具体需求是: 在 AlertDialog 中显示一大段文字. 但是如果文字很多的话, 会自动把 Dialog 撑得很大, 所以想做一个固定大小的 Dialog, 在网上找到一方法, 并记录下来:dialog.getWindow().setLayout(460, 140);注意:这段代码必须要写在 show() 方法之后才行!!!WindowManager.LayoutParams params = dialog.getWindow().getAttributes();params.width = 300;params.height = 400;dia 阅读全文

posted @ 2012-10-24 20:44 Ronald9 阅读(243) 评论(0) 推荐(0)

Android -- Button [ 学习笔记 一 ] 原创
摘要:一. 类的继承结构关系图android.widget.Button --- android.widget.CompoundButton --- android.widget.CheckBox --- android.widget.RadioButton --- android.widget.Switch --- android.widget.ToggleButton二. Button 类的使用1) 注册单击事件监听器final Button button = (Button) findViewById(R.id.button_id)... 阅读全文

posted @ 2012-01-05 10:46 Ronald9 阅读(327) 评论(0) 推荐(0)

导航