- 博客(8)
- 资源 (1)
- 收藏
- 关注
原创 Android彩色二维码带logo
最近看到彩色二维码挺有意思,感觉我们常见的黑色二维码有些单调。看了一下大牛们的博客,这里在大牛的基础上更改了一下。做了一个有颜色渐变的二维码。在这里记录一下自己的学习成果。效果图如下:直接上代码了package com.yaojian.qrcode;import java.util.Hashtable;import android.graphics.Bitmap;i
2016-04-12 09:49:49 603
原创 Unable to stop activity
java.lang.RuntimeException: Unable to stop activity {.MainActivity}: java.lang.SecurityException: Permission Denial: getTasks() from pid=3363, uid=10357 requires android.permission.GET_TASKS
2016-02-22 16:09:14 1311
原创 java.lang.IllegalStateException: Already in the pool!
java.lang.IllegalStateException: Already in the pool!添加mVelocityTracker = null;问题得到解决private VelocityTracker mVelocityTracker;if (mVelocityTracker != null) {mVelocityTracker.recycle();mVel
2015-12-24 15:14:51 4192 1
原创 EditText无法弹出软键盘
自定义DialogAlertDialog dlg = new AlertDialog.Builder(context).create()View view = ((Activity) context).getLayoutInflater().inflate(R.layout.dialog, null);EditText ed = (EditText) view.findView
2015-11-27 11:15:20 529
原创 Activity中的启动模式(launchMode)简单理解
Activity一共有以下四种launchMode:1.standard2.singleTop3.singleTask4.singleInstance在AndroidManifest.xml配置的android:launchMode属性。1.standardstandard为activity的默认启动模式。每次跳转系统都会在task中生成新的activity实例置于
2015-07-07 11:00:50 375
原创 The method setPluginsEnabled() is undefined for the type WebSettings
The method setPluginsEnabled() is undefined for the type WebSettings.setPluginsEnabled()现在已经不再支持,改为WebView.getSettings().setPluginState(WebSettings.PluginState.ON);
2015-06-30 17:51:14 1178
转载 android.intent.action大全和用法收集
收集学习一下android.intent.action的使用:1.从google搜索内容 Intent intent = new Intent(); intent.setAction(Intent.ACTION_WEB_SEARCH); intent.putExtra(SearchManager.QUERY,"searchString") startActivity(int
2015-06-27 18:46:38 1289
原创 ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.a
Intent.ACTION_VIEW 根据用户的数据类型打开相应的Activity。这里要打开一个网页,出现ActivityNotFoundException错误。android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat
2015-06-27 17:57:48 8140
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人