Java - Random 伪随机数

java.util.Random

  1. java.util.Random 中的随机实现算法是伪随机,即有规则的随机,它会在给定的种子(Seed)区间随机生成数字
  2. 种子相同的 Random 对象,相同次数产生的数字是完全相同
  3. Random 中生成的随机数字都是均匀分布的,区间内部的数字生成的概率均等

实际测试

来看一段代码

Java 异常处理 InvocationTargetException

InvocationTargetException 异常由 Method.invoke(obj, args…) 方法抛出。当被调用的方法的内部抛出了异常而没有被捕获时,将由此异常接收

示例代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package me.redneno.test.reflect;

public class Reflect {
public void run(int i) throws ZeroException {
A b = new A();
a.run(i);
}
}

class A {
public void run(int i) throws ZeroException {
if (i < 0) {
throw new ZeroException("Parameter must be greater than zero!");
}
System.out.println("Param: " + i);
}
}

class ZeroException extends Exception {
private static final long serialVersionUID = 1L;

private String detailMessage;

public ZeroException(String detailMessage) {
this.detailMessage = detailMessage;
}

public String getMessage() {
return detailMessage;
}
}

Android - ZXing 库生成二维码

⑧说了,直接进入主题

引用 ZXing 库

在 build.gradle 中添加引用

1
implementation 'com.google.zxing:core:3.4.0'

Android - ContentProvider 内容提供器详解

概述

ContentProvider 的作用是为不同的应用之间数据共享,提供统一的接口。安卓系统中应用内部的数据是对外隔离的,要想让其它应用能使用自己的数据(例如通讯录),这个时候就用到了 ContentProvider。

原理

ContentProvider 通过 uri 来标识其它应用要访问的数据,通过 ContentResolver 的增、删、改、查方法实现对共享数据的操作。还可以通过注册 ContentObserver 来监听数据是否发生了变化来对应的刷新页面。

分析

ContentProvider

ContentProvider 是一个抽象类,如果我们需要开发自己的内容提供器我们就需要继承这个类并复写其方法,需要实现的主要方法如下:

方法 注释
public boolean onCreate() 在创建 ContentProvider 时使用
public Cursor query() 用于查询指定 uri 的数据返回一个 Cursor
public Uri insert() 用于向指定 uri 的 ContentProvider 中添加数据
public int delete() 用于删除指定 uri 的数据
public int update() 用户更新指定 uri 的数据
public String getType() 用于返回指定的 Uri 中的数据 MIME 类型

数据访问的方法 insert,delete 和 update 可以被多个线程同时调用,此时必须是线程安全的

Android 控件 - SearchView

SearchView 搜索视图 是一种非常常见的可自定义的搜索框

Android 控件 - SeekBar

SeekBar 拖动条 常见于音视频播放器的进度或者音量控制。

Android 控件 - RatingBar

RatingBar 评分条 是一个很常见的控件,常见于电商网站、应用商城等需要征求用户意见的地方。

基本使用

1. XML 属性

属性 注释
isIndicator 是否用作用户无法更改的指示器,默认为 false
numStars 显示多少个星星,整数
rating 默认评分值,浮点数
stepSize 评分每次增加的值,浮点数

Android 控件 - EditText

EditText 文本输入框可以接受用户输入。这里记录一下输入框控件的典型应用

1. 默认提示文本

属性

1
2
3
4
// 提示文本
android:hint="Hint text"
// 提示文本颜色
android:textColorHint="#95A1AA"

2. 获得焦点后全选

属性

1
android:selectAllOnFocus="true"

Android - 读取和查询手机联系人

本文会用到安卓的内容提供器 ContentProvider

1. 读取联系人列表

1.1. 权限

1
<uses-permission android:name="android.permission.READ_CONTACTS"/>

安卓 7.0 以上还需要申请动态权限

1
2
3
if (ContextCompat.checkSelfPermission(getApplicationContext(), Manifest.permission.READ_CONTACTS) != PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_CONTACTS}, REQUEST_CODE);
}

1.2. 示例代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
private void fetchAllContacts() {
if (ContextCompat.checkSelfPermission(getApplicationContext(), Manifest.permission.READ_CONTACTS) != PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_CONTACTS}, REQUEST_CODE);
}
ContentResolver resolver = getContentResolver();
Uri uri = ContactsContract.CommonDataKinds.Phone.CONTENT_URI;
Cursor cursor = resolver.query(uri, null, null, null, null);
assert cursor != null;
while (cursor.moveToNext()) {
String cName = cursor.getString(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
String cNum = cursor.getString(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
Log.i("Contact", "姓名:" + cName);
Log.i("Contact", "号码:" + cNum);
Log.i("Contact", "======================");
}
cursor.close();
}

2. 查询指定联系人

2.1 权限

同上

2.2 示例代码

1
2
3
4
5
6
7
8
9
10
11
private void queryContact(String number){
Uri uri = Uri.parse("content://com.android.contacts/data/phones/filter/" + number);
ContentResolver resolver = getContentResolver();
Cursor cursor = resolver.query(uri, new String[]{"display_name"}, null, null, null);
assert cursor != null;
if (cursor.moveToFirst()) {
String name = cursor.getString(0);
Log.i("Contact", number + "对应的联系人名称:" + name);
}
cursor.close();
}

Android - AlertDialog 对话框

1. 基本使用流程

Step 1. 创建 AlertDialog.Builder 对象
Step 2. 调用 setIcon() 设置图标,setTitle() 或 setCustomTitle() 设置标题
Step 3. 设置对话框的内容:setMessage() 还有其他方法来指定显示的内容
Step 4. 调用 setPositive/Negative/NeutralButton() 设置:确定,取消,中立按钮
Step 5. 调用 create() 方法创建这个对象,再调用 show() 方法将对话框显示出来

2. 示例代码

activity_main.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">


<Button
android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Dialog" />

<Button
android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Dialog with list" />

<Button
android:id="@+id/btn3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Dialog with Radio Button" />

<Button
android:id="@+id/btn4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Dialog with Checkbox" />
</LinearLayout>
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×