全部博文(1293)
发布时间:2015-03-20 14:29:55
WinForm:int iActulaWidth = Screen.PrimaryScreen.Bounds.Width;int iActulaHeight = Screen.PrimaryScreen.Bounds.Height ; WPF下的:double dWidth = System.Windows.SystemParameters.PrimaryScreenWidth;double dHeight = System.Windows.SystemParame.........【阅读全文】
发布时间:2014-12-19 16:55:43
使用adpater与listview捆绑后,有时希望在程序使用过程中能动态的更改listview中显示的数据,如何处理? 一、关键代码段 private ListView mListView; private Button mBtnChange; private android.view.View.OnClickListener mCancelClick; .........【阅读全文】
发布时间:2014-12-10 12:33:25
在项目中,一进入一个页面, EditText默认就会自动获取焦点。 那么如何取消这个默认行为呢? 在网上找了好久,有点 监听软键盘事件,有点 调用 clearFouse()方法,但是测试了都没有! xml中也找不到相应的属性可以关闭这个默认行为 解决之道:在EditText的父级控件中找一个,设置成 代码如下:android.........【阅读全文】