上一页 1 ··· 5 6 7 8 9 10 11 下一页

2017年3月30日

进程方式启动Activity

摘要: <activity android:name=".ArticleActivity" android:screenOrientation="portrait" android:process=":articleactivity" > <intent-filter> <action android:na 阅读全文

posted @ 2017-03-30 13:56 yaolunhui 阅读(174) 评论(0) 推荐(0) 编辑

2017年3月27日

设置程序语言

摘要: Locale locale = new Locale(language);Locale.setDefault(locale);Configuration config = getResources().getConfiguration();DisplayMetrics metrics = getRe 阅读全文

posted @ 2017-03-27 14:53 yaolunhui 阅读(233) 评论(0) 推荐(0) 编辑

程序间保存数据SharedPreferences

摘要: SharedPreferences sp = getSharedPreferences("config", MODE_PRIVATE);String cacheToken = sp.getString("loginToken", "");if (!TextUtils.isEmpty(cacheTok 阅读全文

posted @ 2017-03-27 14:52 yaolunhui 阅读(116) 评论(0) 推荐(0) 编辑

listview右边显示 abcd快速选择

摘要: android:fastScrollEnabled="true" 阅读全文

posted @ 2017-03-27 09:43 yaolunhui 阅读(110) 评论(0) 推荐(0) 编辑

2017年3月23日

显示密码

摘要: 第一种if(checkbox_password.isChecked()){ mPasswordEdit.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD); //选择显示密码}else { //不显示 mPasswordEdit. 阅读全文

posted @ 2017-03-23 08:32 yaolunhui 阅读(226) 评论(0) 推荐(0) 编辑

2017年3月20日

欢迎界面动画

摘要: DisplayImageOptions 阅读全文

posted @ 2017-03-20 12:41 yaolunhui 阅读(94) 评论(0) 推荐(0) 编辑

2017年3月17日

web get Post测试

摘要: postMan(chrome应用) 阅读全文

posted @ 2017-03-17 16:10 yaolunhui 阅读(61) 评论(0) 推荐(0) 编辑

使用MultiDexApplication

摘要: 一定要指定truemultiDexEnabled truendk { abiFilters "armeabi-v7a", "x86"} 阅读全文

posted @ 2017-03-17 08:31 yaolunhui 阅读(595) 评论(0) 推荐(0) 编辑

2017年3月14日

获取当前运行的Activity信息

摘要: new Thread(new Runnable() { @Override public void run() { while(true){ try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace( 阅读全文

posted @ 2017-03-14 11:45 yaolunhui 阅读(351) 评论(0) 推荐(0) 编辑

2017年3月9日

MFC得到运行程序路径

摘要: TCHAR exeFullPath[MAX_PATH]; // MAX_PATH GetModuleFileName(NULL,exeFullPath,MAX_PATH); //获取程序路径 阅读全文

posted @ 2017-03-09 11:46 yaolunhui 阅读(106) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 下一页

导航