摘要:
https://blog.csdn.net/qq_19782019/article/details/80292110 阅读全文
随笔档案-2020年10月
Android--TextView与EditText
2020-10-22 07:16 by darling达, 235 阅读, 收藏, 编辑
摘要:
文本框(TextView)简介TextView直接继承View,作用就是在界面上显示文本(类似于Swing中的JLabel),同时它还是EditText、Button两个UI组件类的父类。另外Android关闭了它的文字编辑功能,如果想编辑内容,则可以使用EditText。 编辑框(EditText 阅读全文
Android Studio报错解——Error:(26, 13) Failed to resolve: com.android.support:appcompat-v7:27.+
2020-10-20 20:57 by darling达, 292 阅读, 收藏, 编辑
摘要:
修改图中红框内数字,改成与你自己的版本相同即可。 阅读全文
AndroidStudio Gradle DSL method not found: “classpath()”错误解决办法
2020-10-20 06:24 by darling达, 413 阅读, 收藏, 编辑
摘要:
大概意思就是要讲classpath放在最顶层的buildscript标签中。 原来报错的配置文件 修改后的配置文件 阅读全文
Could not find com.android.tools.build:gradle:3.0.1
2020-10-19 23:05 by darling达, 252 阅读, 收藏, 编辑
摘要:
解决方法:在项目中加入 maven {url'https://maven.google.com'} 阅读全文
MySQL-常用命令02
2020-10-18 11:01 by darling达, 76 阅读, 收藏, 编辑
摘要:
1、编码规范 主键约束: alter table tp1 add id int(3) auto_increment primary key; 唯一约束:alter table tp1 modify iphone int(6) UNIQUE KEY; 阅读全文