上一页 1 ··· 67 68 69 70 71 72 73 74 75 ··· 202 下一页
摘要: 一,代码 //给按钮增加点击事件 Button webButton = findViewById(R.id.webbutton); webButton.setOnClickListener(new View.OnClickListener() { @Override public void onCl 阅读全文
posted @ 2025-05-01 09:23 刘宏缔的架构森林 阅读(108) 评论(0) 推荐(0)
摘要: 一,配置权限: <uses-feature android:name="android.hardware.telephony" android:required="false" /> <uses-permission android:name="android.permission.CALL_PHO 阅读全文
posted @ 2025-05-01 09:23 刘宏缔的架构森林 阅读(46) 评论(0) 推荐(0)
摘要: 一,安装第三方库glide 1,库地址: https://mvnrepository.com/artifact/com.github.bumptech.glide/glide 2,安装:编辑build.gradle,在dependencies段增加如下一行 // https://mvnreposit 阅读全文
posted @ 2025-05-01 09:23 刘宏缔的架构森林 阅读(118) 评论(0) 推荐(0)
摘要: 一,代码: 在activity的oncreate方法中添加如下代码: //设置状态栏透明 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { getWindow().getDecorView().setSystemUiVisibility(Vi 阅读全文
posted @ 2025-05-01 09:22 刘宏缔的架构森林 阅读(460) 评论(0) 推荐(0)
摘要: 一,问题的现象 代码: //给按钮增加点击事件 Button myButton = findViewById(R.id.apibutton); myButton.setOnClickListener(new View.OnClickListener() { @Override public void 阅读全文
posted @ 2025-05-01 09:22 刘宏缔的架构森林 阅读(88) 评论(0) 推荐(0)
摘要: 一,代码: 1,目标activity中指定动画 public class MylistActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.o 阅读全文
posted @ 2025-04-26 08:46 刘宏缔的架构森林 阅读(76) 评论(0) 推荐(0)
摘要: 一,代码: 1,接口返回的数据: 1,xml: activity: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmln 阅读全文
posted @ 2025-04-26 08:46 刘宏缔的架构森林 阅读(50) 评论(0) 推荐(0)
摘要: 一,代码: 1,java package com.example.okdemo1.activity; import android.content.Intent; import android.os.Bundle; import android.widget.ArrayAdapter; import 阅读全文
posted @ 2025-04-26 08:45 刘宏缔的架构森林 阅读(49) 评论(0) 推荐(0)
摘要: 一,新建一个activity 修改一个新activity的背景色:在activity_mylist.xml中增加一行: android:background="#FF6600" 二,跳转到第二个activity 1,只跳转不传参数 //给按钮增加点击事件 Button myButton = find 阅读全文
posted @ 2025-04-26 08:45 刘宏缔的架构森林 阅读(164) 评论(0) 推荐(0)
摘要: 一,原因: Android P全面禁止了非https链接,并严格审查网站的CA证书 二,解决: 在res文件夹下新建目录xml,然后创建文件network_security_config.xml 内容如下: <?xml version="1.0" encoding="utf-8"?> <networ 阅读全文
posted @ 2025-04-26 08:44 刘宏缔的架构森林 阅读(196) 评论(0) 推荐(0)
上一页 1 ··· 67 68 69 70 71 72 73 74 75 ··· 202 下一页