自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (4)
  • 收藏
  • 关注

原创 Bug记录_Statement labels may not be used in build scripts. In case you tried to configure a property n

Statement labels may not be used in build scripts.In case you tried to configure a property named 'compileSdkVersion', replace ':' with '=' or ' ', otherwise it will not have the desired effect.compileSdkVersion :28buildToolsVersion :"29.0.2"defau.

2021-03-30 10:19:16 800

原创 Connection to the Internet denied. (‘Permission denied: connect‘)

尝试同步您的项目时,您可能会收到以下错误消息:“Connection to the Internet denied. ('Permission denied: connect')”。 您可以通过在 Android Studio 中将系统属性-Djava.net.preferIPv4Stack=true添加到gradle.properties文件来解决此错误消息,具体操作步骤如下:在 Android Studio 中打开gradle.properties文件。 将以下代码行添加到该文件: ...

2020-11-12 11:26:06 2483

原创 Android ADB 命令详解

作者为了方便自己使用,特整理一下官方的adbAndroid 调试桥 (adb)Android 调试桥 (adb) 是一种功能多样的命令行工具,可让您与设备进行通信。adb 命令可用于执行各种设备操作(例如安装和调试应用),并提供对 Unix shell(可用来在设备上运行各种命令)的访问权限。它是一种客户端-服务器程序,包括以下三个组件:客户端:用于发送命令。客户端在开发计算机上运行。您可以通过发出 adb 命令从命令行终端调用客户端。 守护程序 (adbd):用于在设备上运行命令。守护程序在

2020-11-12 11:23:36 1551

原创 android串口通信—— 自动轮寻可以通信的串口

废话不多说,开撸代码。用的是谷歌开源serialPort api ,下载链接 下载后全部导入项目中,什么也不用修改 写一个工具类SerialPortUtils,设置好波特率 记录开始发送时间和最后一次接收时间,用超时时间来判断串口是否能正常收发数据 如何连续三次超时就自动更换串口号,知道接收到数据为止下面是具体的类,仅供参考public class SerialPortUtil...

2020-05-08 16:24:08 699

仿QQ空间下拉头像放大功能demo

仿QQ空间下拉头像放大功能demo,可直接运行

2016-01-18

Android魔法数字效果demo

Android魔法数字效果demo,效果和支付宝昨日收益页面保持一致。

2016-01-18

textview显示图片

实现安卓textview显示图片的问题 public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); button1 = (Button) findViewById(R.id.button1); button2 = (Button) findViewById(R.id.button2); textView = (TextView) findViewById(R.id.textView1); html = "<h1>this is h1</h1>" + "<p>This text is normal</p>" + "<img src='http://tupian.enterdesk.com/2013/lxy/06/22/1.jpg.680.510.jpg' />" + "<img src='http://tupian.enterdesk.com/2013/lxy/06/22/1.jpg.680.510.jpg' />" + "<img src='http://tupian.enterdesk.com/2013/lxy/06/22/1.jpg.680.510.jpg' />" + "<img src='http://tupian.enterdesk.com/2013/lxy/06/22/1.jpg.680.510.jpg' />"; textView.setText(html); button1.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Spanned sp = Html.fromHtml(html); textView.setText(sp); } }); button2.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Spanned sp = Html.fromHtml(html, new Html.ImageGetter() { @Override public Drawable getDrawable(String source) { InputStream is = null; try { is = (InputStream) new URL(source).getContent(); Drawable d = Drawable.createFromStream(is, "src"); d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight()); is.close(); return d; } catch (Exception e) { return null; } } }, null); textView.setText(sp); } }); }

2014-10-17

安卓中文API

安卓中文API

2014-04-22

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除