作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我在 toast 中打印输出模式时,我正在为我的项目使用 android 锁定模式库,我得到所有垃圾值,如 [C245faa3a8
我从 https://code.google.com/p/android-lockpattern/ 得到了库和代码
这是我的代码。
public class PatternTest extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
// This is your preferred flag
Intent intent = new Intent(LockPatternActivity.ACTION_CREATE_PATTERN,
null, getBaseContext(), LockPatternActivity.class);
startActivityForResult(intent, REQ_CREATE_PATTERN);
}
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
char[] pattern = null;
switch (requestCode) {
case REQ_CREATE_PATTERN: {
if (resultCode == RESULT_OK) {
pattern = data
.getCharArrayExtra(LockPatternActivity.EXTRA_PATTERN);
}
break;
}// REQ_CREATE_PATTERN
}
Toast.makeText(getApplicationContext(),pattern.toString(),
Toast.LENGTH_LONG).show();
}
}
最佳答案
使用 new String(byte[])
代替 toString()
:
Toast.makeText(getApplicationContext(),new String(pattern),
Toast.LENGTH_LONG).show();
关于java - 为什么我使用这个 android-lockpattern 库得到垃圾值作为我的输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22764039/
当我在 toast 中打印输出模式时,我正在为我的项目使用 android 锁定模式库,我得到所有垃圾值,如 [C245faa3a8 我从 https://code.google.com/p/andr
我是一名优秀的程序员,十分优秀!