- 博客(97)
- 收藏
- 关注

原创 Java 数组遍历 基础 必学
int[] arr = new int[]{8, 2, 1, 0, 3};int[] index = new int[]{2, 0, 3, 2, 4, 0, 1, 3, 2, 3, 3};String tel = "";for (int a :index) { int e = arr[a];// arr[a] 获取 index下标,获取index第一个下标 是2,遍历arr 输出是1 tel=tel+e;}System.out.println(tel);...
2020-07-20 16:00:49
135

转载 Java集合史上最全
详情网站https://blog.youkuaiyun.com/zhangqunshuai/article/details/80660974?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.nonecase&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.no
2020-07-01 15:23:56
180
原创 Android RecyclerView BaseSectionQuickAdapter实现分组功能
【代码】Android RecyclerView BaseSectionQuickAdapter实现分组功能。
2023-09-15 17:45:05
1016
1
转载 Android关闭所有Activity 然后打开某个Activity
利用Activiy启动flag,Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK,新Activity将成为一个空栈中的新的最底端activity,且旧Activity都会被finish掉Intent intent = new Intent(this, LoginActivity.class);intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_AC
2021-08-26 10:24:48
590
原创 kotlin 购物车 删除数据自动消失,不用刷新 不显示闪
private fun postDeleteCart(ids: MutableList<String>) { val map = mutableMapOf<String, MutableList<String>>() map["cartIds"] = ids productService.delCart(map) .doOnSubscribe(dialog) .subscribeOn(AndroidSchedule.
2021-08-23 16:23:26
195
原创 Android ImageView 选中状态
bg_navigation_search.xml 布局<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/navigation_search_n" android:state_selected="true" /> <item android:drawable="@drawable/navigation_.
2021-08-01 17:01:57
4532
转载 android 获取当前屏幕显示的Activity
如果是在Service或者线程中调用,需要在Manifest.xml文件中添加权限:<uses-permission android:name=“android.permission.GET_TASKS” /> //判断当前界面显示的是哪个Activitypublic static String getTopActivity(Context context){ ActivityManager am = (ActivityManager) context.getSys..
2021-07-27 09:16:37
1330
原创 Android ImageView显示Url图片
//网络权限<uses-permission android:name="android.permission.INTERNET" />ImageView mImgView;String url = "https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fb-ssl.duitang.com%2Fuploads%2Fitem%2F201707%2F15%2F20170715164510_xm2yL.thumb.400_0.jpeg&a.
2021-05-14 10:35:09
3746
原创 Android Kotlin 比较稳广播json传值
A界面private boolean flagReceiveRegis;private var mDesignCurrentProduct: ProductDetailNew? = nullcase R.id.start_receive: //注册广播 IntentFilter intentFilter = new IntentFilter(); intentFilter.addAction(ACTION); ...
2021-05-11 14:34:40
221
原创 Android kotlin 传JSon数据
1.A界面 传送private var productDetail: ProductDetailNew? = nullprivate fun getData() { val resp = object : CustomDisposable<RespMsg<ProductDetailNew>>(mContext) { override fun onNext(t: RespMsg<ProductDetailNew>) { .
2021-03-24 15:13:16
674
原创 java 查找算法(折半查找算法)
// 折半查找 public static void main(String[] args) { int[] arr = {2,6,3,1,8,9,10}; int index = binarySearch(arr,8); System.out.print(index);//输出 4 } /** * * @param arr 要进行查找的数组,要求数组必须是有序的 * @param key ...
2021-03-02 15:24:56
963
原创 Java基础(冒泡排序 和 选择排序 和 快速排序) 比较细的详情
详情网站:https://blog.youkuaiyun.com/qq_41679818/article/details/90296399 public static void main(String[] args) { //冒泡排序简介(从小到大排序) int[] numbrs = new int[]{1, 5, 8, 2, 3, 9, 4}; for (int i = 0; i < numbrs.length - 1; i++) { //numbrs.l.
2021-02-20 11:23:27
172
转载 Android 冷启动 热启动 分析
详情网站:https://blog.youkuaiyun.com/laizixingxingdewo/article/details/78927861
2021-02-03 17:23:07
202
转载 java 泛型 作用与定义
public static void main(String[] args)throws ClassNotFoundException{ String str = get("哈士奇","world"); System.out.println(str);//输出打印 哈士奇}// static <T,U>T 是指定返回状态值 tpublic static <T,U>T get(T t,U u){ if (u !=null){ retur.
2021-02-02 10:20:48
282
1
转载 android webview与native的通信框架 h5和Android交互
1.效果图:js调用java代码2.类public class MainActivity extends AppCompatActivity { private WebView contentWebView = null; private TextView msgView = null; @SuppressLint("JavascriptInterface") @Override protected void onCreate(Bundle sa.
2021-01-26 15:03:46
172
转载 Android JS与java交互
1.布局<?xml version="1.0" encoding="utf-8"?><androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.and
2021-01-23 16:00:12
161
转载 Android OpenCV应用篇二:图片处理
https://blog.youkuaiyun.com/qq_20158897/article/details/100551808
2021-01-22 18:07:50
212
原创 Android kotlin 点击App 调节系统音量
看效果图1.入口<application android:allowBackup="true" android:icon="@mipmap/timg" android:label="@string/app_name" android:roundIcon="@mipmap/timg" android:supportsRtl="true" android:excludeFromRecents="true" androi..
2020-12-11 17:09:53
599
转载 Android Studro 自带检查内存泄漏
https://xujiajia.blog.youkuaiyun.com/article/details/78784758?utm_medium=distribute.pc_relevant.none-task-blog-OPENSEARCH-2.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-OPENSEARCH-2.control
2020-12-03 16:51:34
222
原创 Android 动态 ImageView
需求:界面有时候显示图片的数量未知,需要在代码中动态添加图片。案例一个ImageView 显示3张图片方法步骤:1:布局<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
2020-11-11 17:13:22
363
原创 Android 自定义ImageView平移、 滑动、缩放滑动
代码:https://github.com/wwliyineng/-imagView 1:代码 要导入v7包才行 :implementation 'com.android.support:appcompat-v7:25.3.1'allprojects { repositories { jcenter() maven { url "https://maven.google.com" ...
2020-11-10 16:05:59
909
原创 Android 自定义 滚动 ViewDragHelper
参考网站:(1)https://blog.youkuaiyun.com/briblue/article/details/73730386(2)https://www.jianshu.com/p/111a7bc76a0e
2020-11-05 17:55:47
92
转载 Android直播相关技术
参考:https://blog.youkuaiyun.com/lmj623565791/article/details/77937483
2020-07-17 17:38:30
171
原创 Java 基础 A类集合存的数据B类调用
1.新建一个Callback抽象类public interface Callback { Map<String, Object> a() ;}2. b继承Callbackpublic class b implements Callback{ @Override public Map<String, Object> a() { Map<String,Object> map=new HashMap<
2020-07-01 18:23:41
322
原创 Java 基础 HashMap + Iterator遍历集合
1.Iterator遍历集合public static void main(String[] args){ Map<String,String> map = new HashMap<String, String>(); map.put("土耳其","热气球"); map.put("中国","长城"); map.put("法国","铁塔"); Set<String> keySet = map.keySet(); Iter.
2020-07-01 15:31:16
443
原创 Android 验证码输入框 连续性粘贴 使用第三方包
第一步android {compileOptions{ sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8}dependencies { implementation 'com.github.Wynsbin:Verif...
2020-04-17 15:09:04
702
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人