Kennem's Blog
  • 🏠主页
  • 🔍搜索
  • 📚文章
  • ⏱时间轴
  • 🔖标签
  • 🗂️分类
  • 🙋🏻‍♂️关于
主页 » 📚文章

💻技术

Android内存管理知识点

Android内存管理知识点 问题 1: 什么是垃圾回收机制? 解答: 垃圾回收(GC)是由Java虚拟机(JVM)垃圾回收器提供的一种对内存回收的机制...

2024-07-04 · 11 分钟 · 5391 字 · updated: 2024-07-04 · ShowGuan

Android(6)

Android(6) 记账本小项目 BillPagerActivity.java package com.showguan.chapter08; import android.app.DatePickerDialog; import android.content.Intent; import android.media.Image; import android.os.Bundle; import android.util.TypedValue; import android.view.View; import android.widget.DatePicker; import android.widget.ImageView; import android.widget.TextView; import androidx.activity.EdgeToEdge; import androidx.appcompat.app.AppCompatActivity; import androidx.core.graphics.Insets; import androidx.core.view.ViewCompat; import androidx.core.view.WindowInsetsCompat; import androidx.viewpager.widget.PagerTabStrip; import androidx.viewpager.widget.ViewPager; import com.showguan.chapter08.adapter.BillPagerAdapter; import com.showguan.chapter08.database.BillDBHelper; import com.showguan.chapter08.util.DateUtil; import org.w3c.dom.Text; import java.util.Calendar; public class BillPagerActivity extends AppCompatActivity implements View.OnClickListener, DatePickerDialog.OnDateSetListener {...

2024-07-01 · 4 分钟 · 1899 字 · updated: 2024-07-01 · ShowGuan

Android(5)

Android(5) 高级控件 SpinnerDialog + ArrayAdapter XML <?xml version="1.0" encoding="utf-8"?> <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" android:id="@+id/main" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".SpinnerDropdownActivity" android:orientation="vertical"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="下拉模式的列表框" android:textSize="17sp"/> <Spinner android:id="@id/sp_dialog" android:layout_width="match_parent" android:layout_height="wrap_content" android:spinnerMode="dialog"/>...

2024-06-29 · 13 分钟 · 6251 字 · updated: 2024-06-29 · ShowGuan

《数字图像处理》课程综合项目(Matlab)

《数字图像处理》课程综合项目——基于多种滤波器的图像去噪算法比较与分析 GUI界面: 本项目源代码和报告均已开源: 开源仓库:https://gi...

2024-06-26 · 2 分钟 · 897 字 · updated: 2024-06-26 · ShowGuan

Android(4)

Android(4) 就算是最低的15x15都已经不错了,以后还有时间去学,上了研究生也没人能保证你有15x15的收入 内容提供者(Conten...

2024-06-26 · 15 分钟 · 7505 字 · updated: 2024-06-29 · ShowGuan

Android(2)

Android(2) Activity的启动和结束 从当前页面跳转到新页面,跳转代码如下: startActivity(new Intent(源页面.this, 目标页面.class...

2024-06-21 · 14 分钟 · 6901 字 · updated: 2024-06-21 · ShowGuan

Android(3)

Android(3) 清楚自己是在为了什么而努力,以后能得到什么,你想要什么结果。 数据存储 共享参数的用法 SharedPreferences 是 Android的一个轻量级存储工具...

2024-06-21 · 15 分钟 · 7102 字 · updated: 2024-06-21 · ShowGuan

Android(1)

Android(1) 【金山文档 | WPS云文档】 Kotlin 讲义 https://kdocs.cn/l/cu14rrCtfKxv 【金山文档 | WPS云文档】 Android 四大组件课程概要 https://kdocs.cn/l/croaFl0RS5LA 【金山文档 | WPS云文档】 Fragment 重点知识 https://kdocs.cn/l/cj89XRLXypb8 【...

2024-06-17 · 15 分钟 · 7174 字 · updated: 2024-06-17 · ShowGuan

Java Web开发(7)

Java Web开发(7) Spring原理 配置优先级 SpringBoot中支持三种格式配置文件的优先级 properties yaml yml 配置 SpringBoot除了支持配置文件...

2024-06-11 · 7 分钟 · 3242 字 · updated: 2024-06-11 · ShowGuan

面经(1)

面经(1) 八股分为:基础知识,底层原理,场景应用 基础知识:javaguide, 死记硬背,思维导图 底层原理:八股合集,面经+GPT+整理 场景应...

2024-06-11 · 10 分钟 · 4618 字 · updated: 2024-06-11 · ShowGuan

Java Web开发(6)

Java Web开发(6) 事务:事务是一组操作的集合,它是一个不可分割的工作单位,这些操作要么同时成功,要么同时失败 start transaction / begin commit rollback Spring事务管理...

2024-06-10 · 5 分钟 · 2239 字 · updated: 2024-06-10 · ShowGuan

LeetCode双周赛132 & 周赛401(240608/09)

LeetCode双周赛132 & 周赛401(240608/09) 3181. 执行操作可获得的最大总奖励 II周赛第四题 题目大意 给定一个整数数组 reward...

2024-06-10 · 2 分钟 · 932 字 · updated: 2024-06-10 · ShowGuan

Java Web开发(5)

Java Web开发(5) MyBatis MyBatis是一款优秀的持久层框架,用于简化JDBC的开发。 使用Mybatis查询所有用户数据 创建SpringBoot...

2024-06-07 · 12 分钟 · 5716 字 · updated: 2024-06-07 · ShowGuan

LeetCode双周赛131(240525)

双周赛131(240525) AK的第二场😝, 第四题是用C++ 找网上模板,套用查找最长的连0串过的, 最后两分钟才过,很惊险。赛后发现做法并不优...

2024-05-27 · 3 分钟 · 1361 字 · updated: 2024-05-27 · ShowGuan

LeetCode周赛399(240526)

周赛399(240526) 这场掉分了,第四题没思路,而且罚时太多了😥 第三题3164. 优质数对的总数 II 题目大意: 给定两个整数数组nums1和n...

2024-05-27 · 2 分钟 · 850 字 · updated: 2024-05-27 · ShowGuan
« 上一页  下一页  »
© 2025 Kennem's Blog · Powered by Hugo & PaperMod
Visitors: Views: