首页
壁纸
直播
留言板
更多
视频
统计
友情链接
实用工具
Search
1
给孙小姐的一封情书
256 阅读
2
LabVIEW | 各版本及开发工具模块下载
142 阅读
3
armUbuntu系统构建
115 阅读
4
armUbuntu | uboot常用指令
112 阅读
5
编译 openwrt 及初始配置-及部分排错
105 阅读
取次花丛懒回顾
默认分类
C#
MySQL
LabVIEW
Java
Android
PHP
Python
handsome
相册
百度地图
嵌入式
嵌入式Ubuntu
linux
Unity
Golang
Rust
OpenHD
教学计划
Search
标签搜索
C#
handsome
Git
动态壁纸
开源
Unity3d
Unity
csharp
魔傲手记
累计撰写
156
篇文章
累计收到
20
条评论
首页
栏目
取次花丛懒回顾
默认分类
C#
MySQL
LabVIEW
Java
Android
PHP
Python
handsome
相册
百度地图
嵌入式
嵌入式Ubuntu
linux
Unity
Golang
Rust
OpenHD
教学计划
页面
壁纸
直播
留言板
视频
统计
友情链接
实用工具
搜索到
130
篇与
的结果
2020-12-09
Android-RadioButton || 设置button图片居中,
<RadioGroup android:id="@+id/rg_1" android:layout_width="match_parent" android:layout_height="60dp" android:orientation="horizontal"> <RadioButton android:id="@+id/btn_1" android:text="@string/form_map" android:checked="true" android:layout_width="0dp" android:layout_weight="1" android:layout_height="match_parent" android:button="@null" android:textSize="0sp" android:drawableTop="@drawable/radio_button"/>
2020年12月09日
39 阅读
0 评论
0 点赞
2020-12-09
Android-Activity || 隐藏状态栏、导航栏,解决触摸显示问题
Android 隐藏状态栏,导航栏,但是触碰屏幕会显示导航栏kotlin:window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION or View.SYSTEM_UI_FLAG_FULLSCREEN解决办法,想到两个(重写触摸事件,返回true||添加一个View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY)第二个解决办法window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION or View.SYSTEM_UI_FLAG_FULLSCREEN or View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
2020年12月09日
34 阅读
0 评论
0 点赞
2020-12-08
解决Gradle 依赖下载慢
参考阿里云公共代理库https://www.jianshu.com/p/ab1f5e5f5f5c修改前的依赖buildscript { repositories { mavenCentral() jcenter() google() } dependencies { classpath 'com.android.tools.build:gradle:3.0.1' } } allprojects { repositories { mavenCentral() jcenter() google() } }上面的这种方式,由于会用到google的maven仓库,直接导致相关的依赖库无法下载,gradle plug3.0无法下载的问题。用阿里云仓库解决问题mavenCentral镜像仓库地址http://maven.aliyun.com/nexus/content/groups/public/jentral镜像仓库地址https://maven.aliyun.com/repository/jcentergoogle镜像仓库地址https://maven.aliyun.com/repository/google完整模式buildscript { repositories { // mavenCentral() // jcenter() // google() maven { url 'https://maven.aliyun.com/repository/gradle-plugin' } maven { url 'https://maven.aliyun.com/repository/google' } maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' } maven { url 'https://maven.aliyun.com/repository/jcenter'} } dependencies { classpath 'com.android.tools.build:gradle:3.0.1' } } allprojects { repositories { // mavenCentral() // jcenter() // google() maven { url 'https://maven.aliyun.com/repository/gradle-plugin' } maven { url 'https://maven.aliyun.com/repository/google' } maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' } maven { url 'https://maven.aliyun.com/repository/jcenter'} } }作者:黑色海鸥链接:https://www.jianshu.com/p/b3d00fa34099来源:简书
2020年12月08日
19 阅读
0 评论
0 点赞
2020-12-08
Android-WebVIEW || net::ERR_CLEARTEXT_NOT_PERMITTED Android9.0无法加载url
从Android 9.0(API级别28)开始,默认情况下禁用明文支持。因此http的url均无法在webview中加载解决办法:在manifest 中application节点添加android:usesCleartextTraffic="true"添加后如下:<?xml version="1.0" encoding="utf-8"?> <manifest ...> <uses-permission android:name="android.permission.INTERNET" /> <application ... android:usesCleartextTraffic="true" ...> ... </application> </manifest>附上链接:https://stackoverflow.com/questions/45940861/android-8-cleartext-http-traffic-not-permitted同时如果你还有webView 的问题,我遇到并记录的如下net:err_unknown_url_schemeandroid调用js方法Android9.0_P:ClassNotFoundException:Didn’t find class “org.apache.http.ProtocolVersion” on path:以上是开发中遇到的问题,后期有时间还会继续整理,或者您有更好的解决方法,添加更完善,不胜感激。欢迎留言交流,书到用时方恨少,纸上得来终觉浅!共勉。原文作者连接:https://blog.csdn.net/qq_33721320/article/details/84400825
2020年12月08日
20 阅读
0 评论
0 点赞
2020-05-13
Windows SDK version 8.1 下载地址
Windows SDK version 8.1 下载地址https://go.microsoft.com/fwlink/p/?LinkId=323507
2020年05月13日
12 阅读
0 评论
0 点赞
1
...
22
23
24
...
26