
Andriod
yu_qiushui
这个作者很懒,什么都没留下…
展开
-
Could not find com.android.tools.build:aapt2:3.2
Could not find com.android.tools.build:aapt2:3.2.1-4818971.Searched in the following locations: file:/D:/AndroidSDK/Sdk/extras/m2repository/com/android/tools/build/aapt2/3.2.1-4818971/aapt2-3.2.1...原创 2018-10-13 10:20:07 · 3730 阅读 · 0 评论 -
Unknown failure (at android.os.Binder.execTransact(Binder.java:567)) Error while Installing APKs
安卓开发真机调试时,经常报错Unknown failure (at android.os.Binder.execTransact(Binder.java:567))Error while Installing APKs更改File | Settings | Build, Execution, Deployment | Instant Run下Enable instant ran没...原创 2018-10-29 15:50:44 · 916 阅读 · 1 评论 -
tomcat7启动org.apache.jasper.el.ELContextImpl cannot be cast to org.apache.jasper.el.ELContextImpl报错
java.lang.ClassCastException: org.apache.jasper.el.ELContextImpl cannot be cast to org.apache.jasper.el.ELContextImpl at org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate(PageContextIm...转载 2018-11-21 10:19:19 · 636 阅读 · 0 评论 -
安卓开发密码显示隐藏(三种方法)
新建activity_main.xml<?xml version="1.0" encoding="utf-8"?><android.support.percent.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="htt...原创 2018-11-21 11:02:39 · 3770 阅读 · 0 评论 -
安卓开发——在Activity里如何获得另一个xml布局文件的控件
LayoutInflater factory = LayoutInflater.from(当前类.this); View layout = factory.inflate(R.layout.你要获取的另一个XML, null); TextView textview = (TextView) layout.findViewById(R.id.控件ID);1、获取LayoutInflat...原创 2018-12-04 11:27:25 · 6579 阅读 · 2 评论