上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 31 下一页
摘要: 一、Activity之间相互跳转: Intent intent=new Intent(MainActivity.this, InfoActivity.class); startActivity(intent); 这种是常规操作,无需多做解释。 使用 Activity的startActivity方法, 阅读全文
posted @ 2020-03-26 11:07 我命倾尘 阅读(3202) 评论(0) 推荐(0)
摘要: 一、适用场景 多用于检索信息时,关键词需要在搜索到的内容中着重展示。 二、颜色修改 //修改关键词的格式样式 SpannableStringBuilder msp = new SpannableStringBuilder(str); //字体颜色 msp.setSpan(new Foreground 阅读全文
posted @ 2020-03-25 21:13 我命倾尘 阅读(885) 评论(0) 推荐(1)
摘要: 一、问题如下 1、问题异常:在用Java调用 URLDecoder.decode(result, "UTF-8");时 抛出以下的异常: W/System.err: java.lang.IllegalArgumentException: URLDecoder: Illegal hex charact 阅读全文
posted @ 2020-03-25 20:57 我命倾尘 阅读(2267) 评论(0) 推荐(1)
摘要: 一、问题如下 点击输入框时,会弹出小键盘用于输入。 此时,会把原本的界面挤压上去,如下图: 弹出小键盘之后的界面: 二、问题解决 在AndroidManifest.xml里面找到该页面的Activity,在它里面添加android:windowSoftInputMode="adjustNothing 阅读全文
posted @ 2020-03-24 21:22 我命倾尘 阅读(1115) 评论(0) 推荐(0)
摘要: 一、问题如下 1、报错内容:Only the original thread that created a view hierarchy can touch its views.Only the original thread that created a view hierarchy can to 阅读全文
posted @ 2020-03-24 20:12 我命倾尘 阅读(4306) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 31 下一页