
android
文章平均质量分 73
liuwangle123
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
item图片 打开新的activity
public static void startAction(Context mContext, View view,String postId, String imgUrl) { Intent intent = new Intent(mContext, NewsDetailActivity.class); intent.putExtra(AppConstant.NEWS_POST转载 2017-03-09 16:35:36 · 216 阅读 · 0 评论 -
自定义app锁屏页
Window win = getWindow(); win.addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED | WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD );//锁屏状态下显示// ...原创 2018-12-20 14:49:57 · 845 阅读 · 0 评论 -
webview 处理
@Override public void onPageFinished(WebView view, String url) { view.getSettings().setBlockNetworkImage(false); webViewClient.onPageFinished(view, url); } @O...原创 2018-12-20 14:52:28 · 293 阅读 · 0 评论 -
酷派 ValueAnimator 不起作用
Field f = null;try { f = a.getClass().getDeclaredField("mDuration"); f.setAccessible(true); f.set(a, 200);} catch (Exception e) { e.printStackTrace();}原创 2018-12-21 11:37:52 · 331 阅读 · 0 评论 -
android 动画运行不占空间
父view 加android:clipChildren="false"原创 2018-12-21 11:40:29 · 190 阅读 · 0 评论