上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页
摘要: 所花时间(包括上课):1.5 打码量(行):150 博客量(篇):1 了解到知识点:学习手势检测 public class MyGestureView extends View { private GestureDetector gestureDetector; public MyGestureVi 阅读全文
posted @ 2024-04-30 19:05 赵千万 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 所花时间(包括上课):2 打码量(行):200 博客量(篇):1 了解到知识点:学习触摸事件 public class TouchableView extends View { private float lastX, lastY; private Paint paint; public Touch 阅读全文
posted @ 2024-04-29 21:46 赵千万 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 所花时间(包括上课):1 打码量(行):100 博客量(篇):1 了解到知识点:学习长按事件 Button button = findViewById(R.id.button); button.setOnLongClickListener(new View.OnLongClickListener() 阅读全文
posted @ 2024-04-28 16:41 赵千万 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 所花时间(包括上课):1 打码量(行):200 博客量(篇):1 了解到知识点:学习Intent过滤器 <!-- AndroidManifest.xml 中的声明 --> <activity android:name=".MyActivity" android:label="@string/app_ 阅读全文
posted @ 2024-04-27 19:58 赵千万 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 所花时间(包括上课):0.5 打码量(行):100 博客量(篇):1 了解到知识点:学习Action和Category // 创建一个带有Action和Category的Intent Intent intent = new Intent(); intent.setAction(Intent.ACTI 阅读全文
posted @ 2024-04-26 19:47 赵千万 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 所花时间(包括上课):1 打码量(行) 300 博客量(篇):1 了解到知识点:学习Extras和flags属性 // 在发送方(发送Intent的地方) Intent intent = new Intent(MainActivity.this, SecondActivity.class); int 阅读全文
posted @ 2024-04-25 15:31 赵千万 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 所花时间(包括上课):1.5 打码量(行):150 博客量(篇):1 了解到知识点:学习Action和data属性 package com.example.myapp; import android.content.Intent; import android.net.Uri; import and 阅读全文
posted @ 2024-04-24 20:43 赵千万 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 所花时间(包括上课):1 打码量(行):300 博客量(篇):1 了解到知识点:学习Component name属性 package com.example.myapp; import android.content.Intent; import android.os.Bundle; import 阅读全文
posted @ 2024-04-23 21:44 赵千万 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 所花时间(包括上课):1 打码量(行):200 博客量(篇):1 了解到知识点:学习Intent package com.example.myapp; import android.content.Intent; import android.os.Bundle; import android.vi 阅读全文
posted @ 2024-04-22 20:41 赵千万 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 所花时间(包括上课):3.5 打码量(行):500 博客量(篇):1 了解到知识点:学习contentProvider import android.content.ContentProvider; import android.content.ContentUris; import android 阅读全文
posted @ 2024-04-21 18:37 赵千万 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页