当前位置:   article > 正文

Android基础教程——从入门到精通(下)

android基础教程

目录

六、高级控件

1. 下拉列表

(1)下拉框

(2)SimpleAdaper

(3)BaseAdapter

2. 列表类视图

(1)列表视图 ListView

(2)网格视图 GridView

3. 翻页类视图

(1)翻页视图 ViewPager

(2)翻页标签栏 PagerTabStrip

4. Fragment

(1)静态注册:

(2)动态注册:

七、广播组件 Broadcast

1. 收发应用广播

(1)标准广播

(2)有序广播

(3)静态广播

2. 监听系统广播

(1)监听分钟到达广播

(2)监听网络变更广播

八、服务组件 Service

1. 介绍

2. startService

3. bindService

九、网络通信

1. Handler消息机制

2. okhttp

(1)同步方式

(2)异步方式:

3. retrofit


六、高级控件

1. 下拉列表

(1)下拉框

Spinner是下拉框控件,它用于从一串列表中选择某项。下拉列表的展示方式有两种,一种是在当前下拉框的正下方弹出列表框,另一种是在页面中部弹出列表对话框,分别对应SpinnerMode属性设置为dropdown或者dialog。

下面分别是这两种下拉框的实例代码:

首先是布局文件 activity_spinner_dropdown.xml :

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".SpinnerDropdownActivity"
  8. android:orientation="vertical">
  9. <TextView
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:text="下拉模式的列表框"
  13. android:textSize="17sp"/>
  14. <Spinner
  15. android:id="@+id/sp_dropdown"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:spinnerMode="dropdown"/>
  19. </LinearLayout>

接着是条目布局文件 item_select:用于描绘每个item的布局样式

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TextView xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="50dp"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:gravity="center"
  7. android:textColor="#0000ff"
  8. android:textSize="17sp"
  9. tools:text="火星">
  10. </TextView>

SpinnerDropdownActivity:

  1. public class SpinnerDropdownActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener {
  2. // 定义下拉列表需要显示的文本数组
  3. private final static String[] starArray = {"水星", "金星", "地球", "火星", "木星", "土星"};
  4. private Spinner sp_dropdown;
  5. @Override
  6. protected void onCreate(Bundle savedInstanceState) {
  7. super.onCreate(savedInstanceState);
  8. setContentView(R.layout.activity_spinner_dropdown);
  9. sp_dropdown = findViewById(R.id.sp_dropdown);
  10. //声明一个数组适配器
  11. ArrayAdapter<String> starAdapter = new ArrayAdapter<>(this, R.layout.item_select, starArray);
  12. sp_dropdown.setAdapter(starAdapter);
  13. //设置默认为第一项
  14. sp_dropdown.setSelection(0);
  15. //设置监听器,一旦用户选择了某一项,则触发onItemSelected方法
  16. sp_dropdown.setOnItemSelectedListener(this);
  17. }
  18. //选择后触发
  19. @Override
  20. public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
  21. Toast.makeText(this, "你选择的是" + starArray[position], Toast.LENGTH_SHORT).show();
  22. }
  23. @Override
  24. public void onNothingSelected(AdapterView<?> parent) {
  25. }
  26. }

运行结果:

(2)SimpleAdaper

上面用的适配器是ArrayAdapter,数组适配器简单但是只能用于文本列表,如果想要加上图标之类的,则需要用到简单适配器SimpleAdapter了。

以下是示例代码:

首先是布局文件activity_spinner_icon.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <TextView
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:text="行星的简单适配器"
  10. android:textSize="17sp" />
  11. <Spinner
  12. android:id="@+id/sp_icon"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:spinnerMode="dropdown" />
  16. </LinearLayout>

条目布局文件item_simple.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:orientation="horizontal">
  7. <ImageView
  8. android:id="@+id/iv_icon"
  9. android:layout_width="0dp"
  10. android:layout_height="50dp"
  11. android:layout_weight="1"
  12. tools:src="@drawable/diqiu" />
  13. <TextView
  14. android:id="@+id/tv_name"
  15. android:layout_width="0dp"
  16. android:layout_height="match_parent"
  17. android:layout_weight="3"
  18. android:gravity="center"
  19. android:textColor="#ff0000"
  20. android:textSize="17sp"
  21. tools:text="地球" />
  22. </LinearLayout>

SpinnerIconActivity:

  1. public class SpinnerIconActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener {
  2. // 定义下拉列表需要显示的行星图标数组
  3. private static final int[] iconArray = {
  4. R.drawable.shuixing, R.drawable.jinxing, R.drawable.diqiu,
  5. R.drawable.huoxing, R.drawable.muxing, R.drawable.tuxing
  6. };
  7. // 定义下拉列表需要显示的行星名称数组
  8. private static final String[] starArray = {"水星", "金星", "地球", "火星", "木星", "土星"};
  9. @Override
  10. protected void onCreate(Bundle savedInstanceState) {
  11. super.onCreate(savedInstanceState);
  12. setContentView(R.layout.activity_spinner_icon);
  13. // 声明一个映射对象的列表,用于保存行星的图标与名称配对信息
  14. List<Map<String, Object>> list = new ArrayList<>();
  15. // iconArray是行星的图标数组,starArray是行星的名称数组
  16. for (int i = 0; i < iconArray.length; i++) {
  17. Map<String, Object> item = new HashMap<>();
  18. item.put("icon", iconArray[i]);
  19. item.put("name", starArray[i]);
  20. list.add(item);
  21. }
  22. // 声明一个下拉列表的简单适配器,其中指定了图标与文本两组数据
  23. SimpleAdapter startAdapter = new SimpleAdapter(this, list,
  24. R.layout.item_simple,
  25. new String[]{"icon", "name"},
  26. new int[]{R.id.iv_icon, R.id.tv_name});
  27. Spinner sp_icon = findViewById(R.id.sp_icon);
  28. sp_icon.setAdapter(startAdapter);
  29. sp_icon.setSelection(0);
  30. sp_icon.setOnItemSelectedListener(this);
  31. }
  32. @Override
  33. public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
  34. Toast.makeText(this, "您选择的是" + starArray[position], Toast.LENGTH_SHORT).show();
  35. }
  36. @Override
  37. public void onNothingSelected(AdapterView<?> parent) {
  38. }
  39. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47

运行结果:

(3)BaseAdapter

Android的Adapter继承结构如下:

image-20230127163956417

可以看到上面已经提到的ArrayAdapter和SimpleAdapter都是比较具体的实现类,想要有更多的扩展,必然是需要自定义适配器的,我们可以通过继承BaseAdapter,根据业务自定义数据适配器。

示例代码如下:

item_list.xml:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="horizontal">
  6. <!-- 这是显示行星图片的图像视图 -->
  7. <ImageView
  8. android:id="@+id/iv_icon"
  9. android:layout_width="0dp"
  10. android:layout_height="80dp"
  11. android:layout_weight="1"
  12. android:scaleType="fitCenter"
  13. tools:src="@drawable/diqiu" />
  14. <LinearLayout
  15. android:layout_width="0dp"
  16. android:layout_height="match_parent"
  17. android:layout_marginLeft="5dp"
  18. android:layout_weight="3"
  19. android:orientation="vertical">
  20. <!-- 这是显示行星名称的文本视图 -->
  21. <TextView
  22. android:id="@+id/tv_name"
  23. android:layout_width="match_parent"
  24. android:layout_height="0dp"
  25. android:layout_weight="1"
  26. android:gravity="start|center"
  27. android:textColor="@color/black"
  28. android:textSize="20sp"
  29. tools:text="地球" />
  30. <!-- 这是显示行星描述的文本视图 -->
  31. <TextView
  32. android:id="@+id/tv_desc"
  33. android:layout_width="match_parent"
  34. android:layout_height="0dp"
  35. android:layout_weight="2"
  36. android:gravity="start|center"
  37. android:textColor="@color/black"
  38. android:textSize="13sp"
  39. tools:text="地球是太阳系八大行星之一,排行第三,也是太阳系中直径、质量和密度最大的类地行星,距离太阳1.5亿
  40. 公里" />
  41. </LinearLayout>
  42. </LinearLayout>
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46

activity_base_adapter.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <TextView
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:text="行星的基本适配器"
  10. android:textSize="17sp" />
  11. <Spinner
  12. android:id="@+id/sp_planet"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:spinnerMode="dropdown" />
  16. </LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

自定义适配器:

  1. public class PlanetBaseAdapter extends BaseAdapter {
  2. private Context mContext;
  3. private List<Planet> mPlaneList;
  4. public PlanetBaseAdapter(Context mContext, List<Planet> mPlaneList) {
  5. this.mContext = mContext;
  6. this.mPlaneList = mPlaneList;
  7. }
  8. // 获取列表项的个数
  9. @Override
  10. public int getCount() {
  11. return mPlaneList.size();
  12. }
  13. @Override
  14. public Object getItem(int position) {
  15. return mPlaneList.get(position);
  16. }
  17. @Override
  18. public long getItemId(int position) {
  19. return position;
  20. }
  21. @Override
  22. public View getView(int position, View convertView, ViewGroup parent) {
  23. ViewHolder holder;
  24. if (convertView == null){
  25. // 根据布局文件item_list.xml生成转换视图对象
  26. convertView = LayoutInflater.from(mContext).inflate(R.layout.item_list, null);
  27. holder = new ViewHolder();
  28. holder.iv_icon = convertView.findViewById(R.id.iv_icon);
  29. holder.tv_name = convertView.findViewById(R.id.tv_name);
  30. holder.tv_desc = convertView.findViewById(R.id.tv_desc);
  31. // 将视图持有者保存到转换视图当中
  32. convertView.setTag(holder);
  33. }else{
  34. holder = (ViewHolder) convertView.getTag();
  35. }
  36. // 给控制设置好数据
  37. Planet planet = mPlaneList.get(position);
  38. holder.iv_icon.setImageResource(planet.image);
  39. holder.tv_name.setText(planet.name);
  40. holder.tv_desc.setText(planet.desc);
  41. return convertView;
  42. }
  43. public final class ViewHolder {
  44. public ImageView iv_icon;
  45. public TextView tv_name;
  46. public TextView tv_desc;
  47. }
  48. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57

封装Planet:

  1. public class Planet {
  2. public int image; // 行星图标
  3. public String name; // 行星名称
  4. public String desc; // 行星描述
  5. public Planet(int image, String name, String desc) {
  6. this.image = image;
  7. this.name = name;
  8. this.desc = desc;
  9. }
  10. private static int[] iconArray = {R.drawable.shuixing, R.drawable.jinxing, R.drawable.diqiu,
  11. R.drawable.huoxing, R.drawable.muxing, R.drawable.tuxing};
  12. private static String[] nameArray = {"水星", "金星", "地球", "火星", "木星", "土星"};
  13. private static String[] descArray = {
  14. "水星是太阳系八大行星最内侧也是最小的一颗行星,也是离太阳最近的行星",
  15. "金星是太阳系八大行星之一,排行第二,距离太阳0.725天文单位",
  16. "地球是太阳系八大行星之一,排行第三,也是太阳系中直径、质量和密度最大的类地行星,距离太阳1.5亿公里",
  17. "火星是太阳系八大行星之一,排行第四,属于类地行星,直径约为地球的53%",
  18. "木星是太阳系八大行星中体积最大、自转最快的行星,排行第五。它的质量为太阳的千分之一,但为太阳系中其它七大行星质量总和的2.5倍",
  19. "土星为太阳系八大行星之一,排行第六,体积仅次于木星"
  20. };
  21. public static List<Planet> getDefaultList() {
  22. List<Planet> planetList = new ArrayList<Planet>();
  23. for (int i = 0; i < iconArray.length; i++) {
  24. planetList.add(new Planet(iconArray[i], nameArray[i], descArray[i]));
  25. }
  26. return planetList;
  27. }
  28. }
  • 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

BaseAdapterActivity:

  1. public class BaseAdapterActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener {
  2. private List<Planet> planetList;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_base_adapter);
  7. Spinner sp_planet = findViewById(R.id.sp_planet);
  8. // 获取默认的行星列表,即水星、金星、地球、火星、木星、土星
  9. planetList = Planet.getDefaultList();
  10. // 构建一个行星列表的适配器
  11. PlanetBaseAdapter adapter = new PlanetBaseAdapter(this, planetList);
  12. sp_planet.setAdapter(adapter);
  13. sp_planet.setSelection(0);
  14. sp_planet.setOnItemSelectedListener(this);
  15. }
  16. @Override
  17. public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
  18. Toast.makeText(this, "您选择的是" + planetList.get(position).name, Toast.LENGTH_SHORT).show();
  19. }
  20. @Override
  21. public void onNothingSelected(AdapterView<?> parent) {
  22. }
  • 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

运行结果:

2. 列表类视图

(1)列表视图 ListView

ListView允许在页面上分行展示相似的数据列表,例如新闻列表、商品列表、图书列表等,方便用户浏览与操作。

上面下拉列表都是点击选中之后就会消失,而如果想要实现像购物商城那样排列显示商品的效果,则可以用ListView。

对于上面的代码,数据适配器PlanetBaseAdapter,条目布局item_list.xml,都不需要修改。只需要修改主Activity即可:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="40dp">
  9. <CheckBox
  10. android:id="@+id/ck_divider"
  11. android:layout_width="0dp"
  12. android:layout_height="match_parent"
  13. android:layout_weight="1"
  14. android:gravity="start|center"
  15. android:text="显示分隔线"
  16. android:textSize="17sp"/>
  17. <CheckBox
  18. android:id="@+id/ck_selector"
  19. android:layout_width="0dp"
  20. android:layout_height="match_parent"
  21. android:layout_weight="1"
  22. android:gravity="start|center"
  23. android:text="显示按压背景"
  24. android:textSize="17sp"/>
  25. </LinearLayout>
  26. <!--只需要添加ListView即可-->
  27. <ListView
  28. android:id="@+id/lv_planet"
  29. android:layout_width="match_parent"
  30. android:layout_height="wrap_content"
  31. android:divider="@null"
  32. android:dividerHeight="0dp"
  33. android:listSelector="@color/transparent"/>
  34. </LinearLayout>
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  1. public class ListViewActivity extends AppCompatActivity implements AdapterView.OnItemClickListener, CompoundButton.OnCheckedChangeListener {
  2. private List<Planet> planetList;
  3. private CheckBox ck_diviver;
  4. private CheckBox ck_selector;
  5. private ListView lv_planet;
  6. @Override
  7. protected void onCreate(Bundle savedInstanceState) {
  8. super.onCreate(savedInstanceState);
  9. setContentView(R.layout.activity_list_view);
  10. lv_planet = findViewById(R.id.lv_planet);
  11. planetList = Planet.getDefaultList();
  12. PlanetBaseAdapter adapter = new PlanetBaseAdapter(this, planetList);
  13. lv_planet.setAdapter(adapter);
  14. lv_planet.setOnItemClickListener(this);
  15. ck_diviver = findViewById(R.id.ck_divider);
  16. ck_diviver.setOnCheckedChangeListener(this);
  17. ck_selector = findViewById(R.id.ck_selector);
  18. ck_selector.setOnCheckedChangeListener(this);
  19. }
  20. @Override
  21. public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
  22. Toast.makeText(this, "您选择的是:" + planetList.get(position).name, Toast.LENGTH_SHORT).show();
  23. }
  24. @Override
  25. public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
  26. switch (buttonView.getId()) {
  27. case R.id.ck_divider:
  28. // 显示分隔线
  29. if (ck_diviver.isChecked()) {
  30. // 从资源文件获得图形对象
  31. Drawable drawable = getResources().getDrawable(R.color.black, getTheme());
  32. lv_planet.setDivider(drawable);
  33. // 设置列表视图的分隔线高度
  34. lv_planet.setDividerHeight(Utils.dip2px(this, 1));
  35. } else {
  36. lv_planet.setDivider(null);
  37. lv_planet.setDividerHeight(0);
  38. }
  39. break;
  40. case R.id.ck_selector:
  41. // 显示按压背景
  42. if (ck_selector.isChecked()) {
  43. // 设置列表项的按压状态图形
  44. lv_planet.setSelector(R.drawable.list_selector);
  45. } else {
  46. Drawable drawable = getResources().getDrawable(R.color.transparent, getTheme());
  47. lv_planet.setSelector(drawable);
  48. }
  49. break;
  50. }
  51. }
  52. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59

运行效果如下:

(2)网格视图 GridView

除了列表视图,网格视图GridView也是常见的列表类视图,它用于分行分列显示表格信息,比列表视图更适合展示物品清单。

在XML文件中添加GridView需要指定列的数目,以及空隙的拉伸模式,示例如下:

  1. <GridView
  2. android:id="@+id/gv_planet"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:numColumns="2"
  6. android:stretchMode="columnWidth" />
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

网格布局在页面布局上有很多细节,这里就暂不扩展,可以找些相关介绍文章再详细学习。

3. 翻页类视图

(1)翻页视图 ViewPager

翻页视图的原理类似列表视图和网格视图,它们的用法也很类似。例如,列表视图和网格视图使用基本适配器BaseAdapter,翻页视图则使用翻页适配器PagerAdapter;列表视图和网格视图使用列表项的点击监听器OnItemClickListener,翻页视图则使用页面变更监听器OnPageChangeListener监听页面切换事件。

(2)翻页标签栏 PagerTabStrip

翻页视图的布局文件:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical">
  8. <!-- 注意翻页视图ViewPager的节点名称要填全路径 -->
  9. <androidx.viewpager.widget.ViewPager
  10. android:id="@+id/vp_content"
  11. android:layout_width="match_parent"
  12. android:layout_height="400dp">
  13. <!-- 注意翻页标签栏PagerTabStrip的节点名称要填全路径 -->
  14. <androidx.viewpager.widget.PagerTabStrip
  15. android:id="@+id/pts_tab"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content" />
  18. </androidx.viewpager.widget.ViewPager>
  19. </LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

编写适配器:

  1. public class ImagePagerAdapater extends PagerAdapter {
  2. private final Context mContext;
  3. private final ArrayList<GoodsInfo> mGoodsList;
  4. // 声明一个图像视图列表
  5. private List<ImageView> mViewList = new ArrayList<>();
  6. public ImagePagerAdapater(Context mContext, ArrayList<GoodsInfo> mGoodsList) {
  7. this.mContext = mContext;
  8. this.mGoodsList = mGoodsList;
  9. // 给每个商品分配一个专用的图像视图
  10. for (GoodsInfo info : mGoodsList) {
  11. ImageView view = new ImageView(mContext);
  12. view.setLayoutParams(new ViewGroup.LayoutParams(
  13. ViewGroup.LayoutParams.MATCH_PARENT,
  14. ViewGroup.LayoutParams.WRAP_CONTENT
  15. ));
  16. view.setImageResource(info.pic);
  17. mViewList.add(view);
  18. }
  19. }
  20. @Override
  21. public int getCount() {
  22. return mViewList.size();
  23. }
  24. @Override
  25. public boolean isViewFromObject(@NonNull View view, @NonNull Object object) {
  26. return view == object;
  27. }
  28. // 实例化指定位置的页面,并将其添加到容器中
  29. @NonNull
  30. @Override
  31. public Object instantiateItem(@NonNull ViewGroup container, int position) {
  32. // 添加一个view到container中,而后返回一个跟这个view可以关联起来的对象,
  33. // 这个对象能够是view自身,也能够是其余对象,
  34. // 关键是在isViewFromObject可以将view和这个object关联起来
  35. ImageView item = mViewList.get(position);
  36. container.addView(item);
  37. return item;
  38. }
  39. // 从容器中销毁指定位置的页面
  40. @Override
  41. public void destroyItem(@NonNull ViewGroup container, int position, @NonNull Object object) {
  42. container.removeView(mViewList.get(position));
  43. }
  44. @Nullable
  45. @Override
  46. public CharSequence getPageTitle(int position) {
  47. return mGoodsList.get(position).name;
  48. }
  49. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56

Activity:

  1. public class PagerTabActivity extends AppCompatActivity implements ViewPager.OnPageChangeListener {
  2. private ArrayList<GoodsInfo> mGoodsList;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_pager_tab);
  7. initPagerStrip();
  8. initViewPager();
  9. }
  10. // 初始化翻页标签栏
  11. private void initPagerStrip() {
  12. PagerTabStrip pts_tab = findViewById(R.id.pts_tab);
  13. // 设置翻页标签栏的文本大小
  14. pts_tab.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
  15. pts_tab.setTextColor(Color.BLACK);
  16. }
  17. // 初始化翻页视图
  18. private void initViewPager() {
  19. ViewPager vp_content = findViewById(R.id.vp_content);
  20. mGoodsList = GoodsInfo.getDefaultList();
  21. ImagePagerAdapater adapter = new ImagePagerAdapater(this, mGoodsList);
  22. vp_content.setAdapter(adapter);
  23. // 给翻页视图添加页面变更监听器
  24. vp_content.addOnPageChangeListener(this);
  25. vp_content.setCurrentItem(3);
  26. }
  27. @Override
  28. public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
  29. }
  30. @Override
  31. public void onPageSelected(int position) {
  32. ToastUtil.show(this, "您翻到的手机品牌是:" + mGoodsList.get(position).name);
  33. }
  34. @Override
  35. public void onPageScrollStateChanged(int state) {
  36. }
  37. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47

4. Fragment

Fragment(碎片)是一种可以嵌入在Activity中的UI片段,与Activity非常相似,不仅包含布局,同时也具有自己的生命周期。

Fragment 表示应用界面中可重复使用的一部分。Fragment 允许您将界面划分为离散的区块,从而将模块化和可重用性引入 Activity 的界面。

Fragment的布局文件和代码使用起来和Activity基本无异。除了继承自Fragment与入口方法onCreateView两点,其他地
方类似活动页面代码。

Fragment的注册方式有两种:

  • 静态注册:在xml中引入
  • 动态注册:通过java代码的方式引入

(1)静态注册:

创建一个Frament:

  1. public class StaticFragment extends Fragment {
  2. @Nullable
  3. @Override
  4. public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
  5. return inflater.inflate(R.layout.fragment_static, container, false);
  6. }
  7. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

Fragment的布局文件:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="wrap_content"
  4. android:orientation="horizontal"
  5. android:background="#bbffbb">
  6. <TextView
  7. android:id="@+id/tv_adv"
  8. android:layout_width="0dp"
  9. android:layout_height="match_parent"
  10. android:layout_weight="1"
  11. android:gravity="center"
  12. android:text="广告图片"
  13. android:textColor="#000000"
  14. android:textSize="17sp" />
  15. <ImageView
  16. android:id="@+id/iv_adv"
  17. android:layout_width="0dp"
  18. android:layout_height="match_parent"
  19. android:layout_weight="4"
  20. android:src="@drawable/adv"
  21. android:scaleType="fitCenter" />
  22. </LinearLayout>
  • 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

在Activity的布局文件中静态引入Fragment:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".FragmentStaticActivity"
  8. android:orientation="vertical">
  9. <!-- 引入Fragment-->
  10. <fragment
  11. android:id="@+id/fragment_static"
  12. android:name="com.example.gaojikongjian.fragment.StaticFragment"
  13. android:layout_width="match_parent"
  14. android:layout_height="60dp"/>
  15. <TextView
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:gravity="center"
  19. android:text="这里是每个页面的具体内容"
  20. android:textColor="#000000"
  21. android:textSize="17sp"/>
  22. </LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

java代码:

  1. public class FragmentStaticActivity extends AppCompatActivity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.activity_fragment_static);
  6. }
  7. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

运行结果:

image-20230205144743855

(2)动态注册:

对上面的翻页标签页进行改进,使用Fragment实现:

创建Fragment:

  1. public class DynamicFragment extends Fragment {
  2. public static DynamicFragment newInstance(int position, int image_id, String desc) {
  3. DynamicFragment fragment = new DynamicFragment();
  4. //把参数打包,传入Fragment中
  5. Bundle args = new Bundle();
  6. args.putInt("position", position);
  7. args.putInt("image_id", image_id);
  8. args.putString("desc", desc);
  9. fragment.setArguments(args);
  10. return fragment;
  11. }
  12. @Override
  13. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  14. Bundle savedInstanceState) {
  15. //根据布局文件生成视图对象
  16. View view = inflater.inflate(R.layout.fragment_dynamic, container, false);
  17. Bundle arguments = getArguments();
  18. if(arguments != null){
  19. ImageView iv_pic = view.findViewById(R.id.iv_pic);
  20. TextView tv_desc = view.findViewById(R.id.tv_desc);
  21. iv_pic.setImageResource(arguments.getInt("image_id", R.drawable.huawei));
  22. tv_desc.setText(arguments.getString("desc"));
  23. }
  24. return view;
  25. }
  26. }
  • 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

Fragment的布局文件 fragment_dynamic:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="wrap_content"
  4. android:orientation="vertical">
  5. <ImageView
  6. android:id="@+id/iv_pic"
  7. android:layout_width="match_parent"
  8. android:layout_height="360dp"
  9. android:scaleType="fitCenter" />
  10. <TextView
  11. android:id="@+id/tv_desc"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:gravity="left"
  15. android:textColor="@color/black"
  16. android:textSize="17sp" />
  17. </LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

适配器 MobilePagerAdapter:

  1. public class MobilePagerAdapter extends FragmentPagerAdapter {
  2. private List<GoodsInfo> mGoodsList;
  3. public MobilePagerAdapter(@NonNull FragmentManager fm, List<GoodsInfo> goodsList) {
  4. super(fm, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT);
  5. this.mGoodsList = goodsList;
  6. }
  7. @NonNull
  8. @Override
  9. public Fragment getItem(int position) {
  10. GoodsInfo goodsInfo = mGoodsList.get(position);
  11. return DynamicFragment.newInstance(position, goodsInfo.pic, goodsInfo.description);
  12. }
  13. @Override
  14. public int getCount() {
  15. return mGoodsList.size();
  16. }
  17. @Nullable
  18. @Override
  19. public CharSequence getPageTitle(int position) {
  20. return mGoodsList.get(position).name;
  21. }
  22. }
  • 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

Activity:

  1. public class FragmentDynamicActivity extends AppCompatActivity {
  2. private ArrayList<GoodsInfo> mGoodsList;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_fragment_dynamic);
  7. initPagerStrip();
  8. initViewPager();
  9. }
  10. // 初始化翻页标签栏
  11. private void initPagerStrip() {
  12. PagerTabStrip pts_tab = findViewById(R.id.pts_tab);
  13. // 设置翻页标签栏的文本大小
  14. pts_tab.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
  15. pts_tab.setTextColor(Color.BLACK);
  16. }
  17. // 初始化翻页视图
  18. private void initViewPager() {
  19. ViewPager vp_content = findViewById(R.id.vp_content);
  20. mGoodsList = GoodsInfo.getDefaultList();
  21. //适配器
  22. MobilePagerAdapter adapter = new MobilePagerAdapter(getSupportFragmentManager(), mGoodsList);
  23. vp_content.setAdapter(adapter);
  24. vp_content.setCurrentItem(3);
  25. }
  26. }
  • 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

Activity的布局文件:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:app="http://schemas.android.com/apk/res-auto"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7. <androidx.viewpager.widget.ViewPager
  8. android:id="@+id/vp_content"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content">
  11. <androidx.viewpager.widget.PagerTabStrip
  12. android:id="@+id/pts_tab"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content" />
  15. </androidx.viewpager.widget.ViewPager>
  16. </LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

运行结果:

七、广播组件 Broadcast

广播组件 Broadcast 是Android 四大组件之一。

广播有以下特点:

  • 活动只能一对一通信;而广播可以一对多,一人发送广播,多人接收处理。
  • 对于发送方来说,广播不需要考虑接收方有没有在工作,接收方在工作就接收广播,不在工作就丢弃广播。
  • 对于接收方来说,因为可能会收到各式各样的广播,所以接收方要自行过滤符合条件的广播,之后再解包处理

与广播有关的方法主要有以下3个。

  • sendBroadcast:发送广播。
  • registerReceiver:注册广播的接收器,可在onStart或onResume方法中注册接收器。
  • unregisterReceiver:注销广播的接收器,可在onStop或onPause方法中注销接收器。

1. 收发应用广播

(1)标准广播

定义一个广播接收器:

  1. // 定义一个标准广播的接收器
  2. public class StandardReceiver extends BroadcastReceiver {
  3. public static final String STANDARD_ACTION = "com.example.broadcaststudy.standard";
  4. // 一旦接收到标准广播,马上触发接收器的onReceive方法
  5. @Override
  6. public void onReceive(Context context, Intent intent) {
  7. if(intent != null && intent.getAction().equals(STANDARD_ACTION)){
  8. Log.d("hhh", "收到一个标准广播");
  9. }
  10. }
  11. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

在Activity中动态注册接收器:

  1. public class BroadcastStandardActivity extends AppCompatActivity {
  2. private StandardReceiver standardReceiver;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_broadcast_standard);
  7. findViewById(R.id.btn_send_standard).setOnClickListener(new View.OnClickListener() {
  8. @Override
  9. public void onClick(View v) {
  10. //发送标准广播
  11. Intent intent = new Intent(standardReceiver.STANDARD_ACTION);
  12. sendBroadcast(intent);
  13. }
  14. });
  15. }
  16. @Override
  17. protected void onStart() {
  18. super.onStart();
  19. standardReceiver = new StandardReceiver();
  20. // 创建一个意图过滤器,只处理STANDARD_ACTION的广播
  21. IntentFilter filter = new IntentFilter(StandardReceiver.STANDARD_ACTION);
  22. // 注册接收器,注册之后才能正常接收广播
  23. registerReceiver(standardReceiver, filter);
  24. }
  25. @Override
  26. protected void onStop() {
  27. super.onStop();
  28. // 注销接收器,注销之后就不再接收广播
  29. unregisterReceiver(standardReceiver);
  30. }
  31. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

xml文件:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:orientation="vertical"
  5. android:padding="5dp">
  6. <Button
  7. android:id="@+id/btn_send_standard"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:gravity="center"
  11. android:text="发送标准广播"
  12. android:textColor="@color/black"
  13. android:textSize="17sp" />
  14. </LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

(2)有序广播

由于广播没指定唯一的接收者,因此可能存在多个接收器,每个接收器都拥有自己的处理逻辑。这些接收器默认是都能够接受到指定广播并且是之间的顺序按照注册的先后顺序,也可以通过指定优先级来指定顺序。

先收到广播的接收器A,既可以让其他接收器继续收听广播,也可以中断广播不让其他接收器收听。

  1. public class BroadOrderActivity extends AppCompatActivity implements View.OnClickListener {
  2. public static final String ORDER_ACTION = "com.example.broadcaststudy.order";
  3. private OrderAReceiver orderAReceiver;
  4. private OrderBReceiver orderBReceiver;
  5. @Override
  6. protected void onCreate(Bundle savedInstanceState) {
  7. super.onCreate(savedInstanceState);
  8. setContentView(R.layout.activity_broad_order);
  9. findViewById(R.id.btn_send_order).setOnClickListener(this);
  10. }
  11. @Override
  12. public void onClick(View v) {
  13. // 创建一个指定动作的意图
  14. Intent intent = new Intent(ORDER_ACTION);
  15. // 发送有序广播
  16. sendOrderedBroadcast(intent, null);
  17. }
  18. @Override
  19. protected void onStart() {
  20. super.onStart();
  21. // 多个接收器处理有序广播的顺序规则为:
  22. // 1、优先级越大的接收器,越早收到有序广播;
  23. // 2、优先级相同的时候,越早注册的接收器越早收到有序广播
  24. orderAReceiver = new OrderAReceiver();
  25. IntentFilter filterA = new IntentFilter(ORDER_ACTION);
  26. filterA.setPriority(8);
  27. registerReceiver(orderAReceiver, filterA);
  28. orderBReceiver = new OrderBReceiver();
  29. IntentFilter filterB = new IntentFilter(ORDER_ACTION);
  30. filterB.setPriority(10);
  31. registerReceiver(orderBReceiver, filterB);
  32. }
  33. @Override
  34. protected void onStop() {
  35. super.onStop();
  36. unregisterReceiver(orderAReceiver);
  37. unregisterReceiver(orderBReceiver);
  38. }
  39. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

(3)静态广播

广播也可以通过静态代码的方式来进行注册。广播接收器也能在AndroidManifest.xml注册,并且注册时候的节点名为receiver,一旦接收器在AndroidManifest.xml注册,就无须在代码中注册了。

之所以罕见静态注册,是因为静态注册容易导致安全问题,故而Android 8.0之后废弃了大多数静态注册。

静态广播的实现方式这里暂不介绍,可自行查阅资料。

2. 监听系统广播

除了应用自身的广播,系统也会发出各式各样的广播,通过监听这些系统广播,App能够得知周围环境发生了什么变化,从而按照最新环境调整运行逻辑。

接下来举几个系统广播的例子。

(1)监听分钟到达广播

步骤一,定义一个分钟广播的接收器,并重写接收器的onReceive方法,补充收到广播之后的处理逻辑。

步骤二,重写活动页面的onStart方法,添加广播接收器的注册代码,注意要让接收器过滤分钟到达广播Intent.ACTION_TIME_TICK。

步骤三,重写活动页面的onStop方法,添加广播接收器的注销代码。

  1. public class SystemMinuteActivity extends AppCompatActivity {
  2. private TextView tv_minute; // 声明一个文本视图对象
  3. private String desc = "开始侦听分钟广播,请稍等。注意要保持屏幕亮着,才能正常收到广播";
  4. @Override
  5. protected void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. setContentView(R.layout.activity_system_minute);
  8. tv_minute = findViewById(R.id.tv_minute);
  9. tv_minute.setText(desc);
  10. }
  11. @Override
  12. protected void onStart() {
  13. super.onStart();
  14. timeReceiver = new TimeReceiver(); // 创建一个分钟变更的广播接收器
  15. // 创建一个意图过滤器,只处理系统分钟变化的广播
  16. IntentFilter filter = new IntentFilter(Intent.ACTION_TIME_TICK);
  17. registerReceiver(timeReceiver, filter); // 注册接收器,注册之后才能正常接收广播
  18. }
  19. @Override
  20. protected void onStop() {
  21. super.onStop();
  22. unregisterReceiver(timeReceiver); // 注销接收器,注销之后就不再接收广播
  23. }
  24. private TimeReceiver timeReceiver; // 声明一个分钟广播的接收器实例
  25. // 定义一个分钟广播的接收器
  26. private class TimeReceiver extends BroadcastReceiver {
  27. // 一旦接收到分钟变更的广播,马上触发接收器的onReceive方法
  28. @Override
  29. public void onReceive(Context context, Intent intent) {
  30. if (intent != null) {
  31. desc = String.format("%s\n%s 收到一个分钟到达广播%s", desc,
  32. DateUtil.getNowTime(), intent.getAction());
  33. tv_minute.setText(desc);
  34. }
  35. }
  36. }
  37. }
  • 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
  • 35
  • 36
  • 37

(2)监听网络变更广播

  1. // 定义一个网络变更的广播接收器
  2. private class NetworkReceiver extends BroadcastReceiver {
  3. // 一旦接收到网络变更的广播,马上触发接收器的onReceive方法
  4. @Override
  5. public void onReceive(Context context, Intent intent) {
  6. if (intent != null) {
  7. NetworkInfo networkInfo = intent.getParcelableExtra("networkInfo");
  8. String networkClass =
  9. NetworkUtil.getNetworkClass(networkInfo.getSubtype());
  10. desc = String.format("%s\n%s 收到一个网络变更广播,网络大类为%s," +
  11. "网络小类为%s,网络制式为%s,网络状态为%s",
  12. desc, DateUtil.getNowTime(),
  13. networkInfo.getTypeName(),
  14. networkInfo.getSubtypeName(), networkClass,
  15. networkInfo.getState().toString());
  16. tv_network.setText(desc);
  17. }
  18. }
  19. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  1. @Override
  2. protected void onStart() {
  3. super.onStart();
  4. networkReceiver = new NetworkReceiver(); // 创建一个网络变更的广播接收器
  5. // 创建一个意图过滤器,只处理网络状态变化的广播
  6. IntentFilter filter = new
  7. IntentFilter("android.net.conn.CONNECTIVITY_CHANGE");
  8. registerReceiver(networkReceiver, filter); // 注册接收器,注册之后才能正常接收广播
  9. }
  10. @Override
  11. protected void onStop() {
  12. super.onStop();
  13. unregisterReceiver(networkReceiver); // 注销接收器,注销之后就不再接收广播
  14. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

此时切换网络,将会有输出提示。

八、服务组件 Service

1. 介绍

可在后台执行长时间运行操作而不提供界面的应用组件。如下载文件、播放音乐

Service有两种方式:

  • startService :简单地启动,之后不能进行交互
  • bindService:启动并绑定Service之后,可以进行交互

下面通过一个音乐播放器实例来介绍这两种方式

2. startService

​ 首先创建MusicHelper用来播放音频

  1. public class MusicHelper {
  2. private MediaPlayer mediaPlayer;
  3. private Context context;
  4. private final int[] musics = new int[]{R.raw.daoxiang, R.raw.qingtian};
  5. private int musicIndex = 0;
  6. private boolean prepared = false;
  7. public MusicHelper(Context context) {
  8. this.context = context;
  9. //创建MediaPlayer对象
  10. createMediaPlayer();
  11. }
  12. //创建MediaPlayer对象
  13. private void createMediaPlayer() {
  14. this.mediaPlayer = new MediaPlayer();
  15. mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
  16. }
  17. //播放
  18. public void play() {
  19. if (mediaPlayer.isPlaying()) {
  20. return;
  21. }
  22. if (prepared) {
  23. mediaPlayer.start();
  24. Log.d("hhh", "播放音频 play");
  25. return;
  26. }
  27. try {
  28. //这里路径要注意:android.resource:// + 包名 + R.raw.XXXX
  29. mediaPlayer.setDataSource(context, Uri.parse("android.resource://" + context.getPackageName() + "/" + musics[musicIndex]));
  30. } catch (IOException e) {
  31. e.printStackTrace();
  32. }
  33. mediaPlayer.prepareAsync();
  34. mediaPlayer.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
  35. @Override
  36. public void onPrepared(MediaPlayer mp) {
  37. mp.start();
  38. Log.d("hhh", "播放音频 play");
  39. prepared = true;
  40. }
  41. });
  42. }
  43. //暂停
  44. public void pause() {
  45. if (!mediaPlayer.isPlaying()) {
  46. return ;
  47. }
  48. mediaPlayer.pause();
  49. }
  50. //下一首
  51. public void next(){
  52. musicIndex = musicIndex + 1;
  53. musicIndex = musicIndex % musics.length;
  54. destroy();
  55. createMediaPlayer();
  56. play();
  57. }
  58. //销毁
  59. public void destroy(){
  60. if(mediaPlayer == null){
  61. return ;
  62. }
  63. mediaPlayer.stop();
  64. mediaPlayer.release();
  65. mediaPlayer = null;
  66. prepared = false;
  67. }
  68. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80

实现Service类:

  1. public class MusicService extends Service {
  2. private MusicHelper musicHelper;
  3. //在onCreate中创建MusicHelper
  4. @Override
  5. public void onCreate() {
  6. super.onCreate();
  7. musicHelper = new MusicHelper(this);
  8. }
  9. //在onDestroy中销毁MusicHelper
  10. @Override
  11. public void onDestroy() {
  12. super.onDestroy();
  13. musicHelper.destroy();
  14. musicHelper = null;
  15. }
  16. //播放音频
  17. @Override
  18. public int onStartCommand(Intent intent, int flags, int startId) {
  19. musicHelper.play();
  20. Log.d("hhh", "播放音频 onStartCommand");
  21. return super.onStartCommand(intent, flags, startId);
  22. }
  23. @Nullable
  24. @Override
  25. public IBinder onBind(Intent intent) {
  26. throw new UnsupportedOperationException("Not yet implemented");
  27. }
  28. }
  • 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

在AndroidManifest.xml中注册:

  1. <service
  2. android:name=".service.MusicService"
  3. android:enabled="true"
  4. android:exported="true" />
  • 1
  • 2
  • 3
  • 4

播放,暂停音乐:

  1. public class StartServicActivity extends AppCompatActivity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.activity_start_servic);
  6. //播放
  7. findViewById(R.id.btPlay).setOnClickListener(new View.OnClickListener() {
  8. @Override
  9. public void onClick(View v) {
  10. Log.d("hhh", "点击了按钮");
  11. Intent intent = new Intent(StartServicActivity.this, MusicService.class);
  12. //这里会自动调用Service的onStartCommand方法
  13. startService(intent);
  14. }
  15. });
  16. //暂停
  17. findViewById(R.id.btStop).setOnClickListener(new View.OnClickListener() {
  18. @Override
  19. public void onClick(View v) {
  20. Intent intent = new Intent(StartServicActivity.this, MusicService.class);
  21. //这里会直接调用Service的onDestroy方法,销毁Service
  22. stopService(intent);
  23. }
  24. });
  25. }
  26. }
  • 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

startService只能简单启动和销毁Service,没办法进行交互,也就没办法进行暂停,下一首等功能。

3. bindService

在Service类中添加了Binder类:

  1. public class MusicService2 extends Service {
  2. private MusicHelper musicHelper;
  3. //在onCreate中创建MusicHelper
  4. @Override
  5. public void onCreate() {
  6. super.onCreate();
  7. musicHelper = new MusicHelper(this);
  8. }
  9. //在onDestroy中销毁MusicHelper
  10. @Override
  11. public void onDestroy() {
  12. super.onDestroy();
  13. musicHelper.destroy();
  14. musicHelper = null;
  15. }
  16. //播放音频
  17. @Override
  18. public int onStartCommand(Intent intent, int flags, int startId) {
  19. musicHelper.play();
  20. Log.d("hhh", "播放音频 onStartCommand");
  21. return super.onStartCommand(intent, flags, startId);
  22. }
  23. public class MyBinder extends Binder {
  24. private MusicService2 service;
  25. public MyBinder(MusicService2 service) {
  26. this.service = service;
  27. }
  28. public void play() {
  29. service.musicHelper.play();
  30. }
  31. public void next() {
  32. service.musicHelper.next();
  33. }
  34. public void pause() {
  35. service.musicHelper.pause();
  36. }
  37. public void destroy() {
  38. service.musicHelper.destroy();
  39. }
  40. }
  41. @Nullable
  42. @Override
  43. public IBinder onBind(Intent intent) {
  44. Log.d("hhh", "onBind");
  45. return new MyBinder(this);
  46. }
  47. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58

连接类MyConn:

  • 调用bindService之后,客户端端连上Service

  • 触发MyConn类的onServiceConnected方法,获取Binder对象

  • 之后可以Binder对象和Service交互(播放、暂停、下一首)

  1. public class MyConn implements ServiceConnection {
  2. public MusicService2.MyBinder myBinder = null;
  3. @Override
  4. public void onServiceConnected(ComponentName name, IBinder service) {
  5. myBinder = (MusicService2.MyBinder) service;
  6. }
  7. @Override
  8. public void onServiceDisconnected(ComponentName name) {
  9. }
  10. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

此时就可以真正实现播放,暂停,下一首等功能了:

  1. public class BindServiceActivity extends AppCompatActivity {
  2. private MyConn myConn;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_bind_service);
  7. //初始化服务
  8. initService();
  9. //播放
  10. findViewById(R.id.btPlay).setOnClickListener(new View.OnClickListener() {
  11. @Override
  12. public void onClick(View v) {
  13. Log.d("hhh", "点击了按钮");
  14. if(myConn.myBinder == null){
  15. return ;
  16. }
  17. myConn.myBinder.play();
  18. }
  19. });
  20. //暂停
  21. findViewById(R.id.btStop).setOnClickListener(new View.OnClickListener() {
  22. @Override
  23. public void onClick(View v) {
  24. if(myConn.myBinder == null){
  25. return ;
  26. }
  27. myConn.myBinder.pause();
  28. }
  29. });
  30. //下一首
  31. findViewById(R.id.btNext).setOnClickListener(new View.OnClickListener() {
  32. @Override
  33. public void onClick(View v) {
  34. if(myConn.myBinder == null){
  35. return ;
  36. }
  37. myConn.myBinder.next();
  38. }
  39. });
  40. }
  41. //初始化服务
  42. public void initService(){
  43. //开启服务
  44. Intent intent = new Intent(this, MusicService2.class);
  45. startService(intent);
  46. //绑定服务
  47. if(myConn == null){
  48. myConn = new MyConn();
  49. intent = new Intent(this, MusicService2.class);
  50. //这里会自动调用MyConn的onServiceConnected方法
  51. bindService(intent, myConn, 0);
  52. }
  53. }
  54. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62

至此,一个简易版音乐播放器完成!!!

九、网络通信

1. Handler消息机制

Handler是一种异步回调机制,主要负责与子线程进行通信。

HTTP请求需要一定时间才能完成,所以不能在主线程中执行。所以一般采用创建一个新线程的方式来执行HTTP,然后再将返回结果发送给主线程。Android提供了Handler来实现这一过程。

Handler机制主要包括四个关键对象:

  • Message:消息。

  • Handler:处理者,主要负责Message的发送以及处理。

  • MessageQueue:消息队列,主要用来存放Handler发送过来的消息。

  • Looper:消息循环,不断的从MessageQueue中抽取Message并执行。

image-20230206160931731

以下通过获取高德天气信息为例,介绍Handler的基本使用

创建获取天气的线程WeatherThread:

  1. public class WeatherThread extends Thread {
  2. //天气接口
  3. private String path = "https://restapi.amap.com/v3/weather/weatherInfo?city=440300&key=f15437fa96e40903e41bcb0c0adc8d38";
  4. //handler
  5. private Handler handler;
  6. public WeatherThread(Handler handler) {
  7. this.handler = handler;
  8. }
  9. @Override
  10. public void run() {
  11. String weather = getWeather();
  12. Message message = new Message();
  13. message.what = 0;
  14. message.obj = weather;
  15. handler.sendMessage(message);
  16. }
  17. //获取天气信息
  18. private String getWeather() {
  19. StringBuilder builder = new StringBuilder();
  20. HttpsURLConnection conn = null;
  21. try {
  22. URL url = new URL(path);
  23. conn = (HttpsURLConnection) url.openConnection();
  24. conn.setRequestMethod("GET");
  25. conn.setConnectTimeout(5000);
  26. InputStream is = conn.getInputStream();
  27. BufferedReader reader = new BufferedReader(new InputStreamReader(is));
  28. String result = reader.readLine();
  29. return result;
  30. } catch (Exception e) {
  31. e.printStackTrace();
  32. } finally {
  33. if (conn != null) {
  34. conn.disconnect();
  35. }
  36. }
  37. return null;
  38. }
  39. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52

WeatherHandler:

  1. public class WeatherHandler extends Handler {
  2. private HandlerActivity handlerActivity;
  3. public WeatherHandler(HandlerActivity handlerActivity){
  4. this.handlerActivity = handlerActivity;
  5. }
  6. @Override
  7. public void handleMessage(@NonNull Message msg) {
  8. super.handleMessage(msg);
  9. //接受到消息则把天气结果设置到文本框
  10. if(msg.what == 0){
  11. TextView txWeather = handlerActivity.findViewById(R.id.tx_weather);
  12. txWeather.setText((String) msg.obj);
  13. }
  14. }
  15. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

Activity:

  1. public class HandlerActivity extends AppCompatActivity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.activity_handler);
  6. //点击按钮后开启新线程获取天气信息
  7. findViewById(R.id.bt_weather).setOnClickListener(new View.OnClickListener() {
  8. @Override
  9. public void onClick(View v) {
  10. WeatherHandler handler = new WeatherHandler(HandlerActivity.this);
  11. new WeatherThread(handler).start();
  12. }
  13. });
  14. }
  15. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  1. <TextView
  2. android:id="@+id/tx_weather"
  3. android:layout_width="match_parent"
  4. android:layout_height="300dp"
  5. android:background="@drawable/border"
  6. android:layout_margin="30dp"/>
  7. <Button
  8. android:id="@+id/bt_weather"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_gravity="center"
  12. android:text="获取天气信息"
  13. android:layout_marginTop="40dp"
  14. android:background="#B4B5AB"/>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

2. okhttp

上面用的Java中的HttpURLConnection是比较底层的接口,编写代码工作量大,容易出错。

okhttp是android平台使用最广泛的第三方网络框架,okhttp做了很多网络优化,功能也很强大。

okhttp有同步、异步两种接口

  • 同步接口:阻塞方式

  • 异步接口:自动创建线程进行网络请求

(1)同步方式

  1. public class WeatherOkHttpThread extends Thread {
  2. //天气接口
  3. private String path = "https://restapi.amap.com/v3/weather/weatherInfo?city=440300&key=****";
  4. //handler
  5. private Handler handler;
  6. public WeatherOkHttpThread(Handler handler) {
  7. this.handler = handler;
  8. }
  9. @Override
  10. public void run() {
  11. String weather = getWeather();
  12. Message message = new Message();
  13. message.what = 0;
  14. message.obj = weather;
  15. handler.sendMessage(message);
  16. }
  17. //获取天气信息
  18. private String getWeather() {
  19. //创建OkHttpClient
  20. OkHttpClient client = new OkHttpClient();
  21. //构建请求
  22. Request request = new Request.Builder().url(path).build();
  23. String result = "";
  24. try {
  25. //同步的方式发送请求
  26. Response response = client.newCall(request).execute();
  27. if(response != null){
  28. result = response.body().string();
  29. }
  30. } catch (IOException e) {
  31. e.printStackTrace();
  32. }
  33. return result;
  34. }
  35. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

(2)异步方式:

异步方式就不需要人为开启子线程了:

  1. //异步方式
  2. public class WeatherOkHttpActivity extends AppCompatActivity {
  3. //天气接口
  4. private String path = "https://restapi.amap.com/v3/weather/weatherInfo?city=440300&key=****";
  5. //handler
  6. private Handler handler;
  7. @Override
  8. protected void onCreate(Bundle savedInstanceState) {
  9. super.onCreate(savedInstanceState);
  10. setContentView(R.layout.activity_weather_ok_http);
  11. //赋值Handler
  12. handler = new WeatherHandler2(this);
  13. //点击按钮后,okHttp异步请求获取天气信息
  14. findViewById(R.id.bt_weather).setOnClickListener(new View.OnClickListener() {
  15. @Override
  16. public void onClick(View v) {
  17. OkHttpClient client = new OkHttpClient();
  18. Request request = new Request.Builder().url(path).build();
  19. client.newCall(request).enqueue(new Callback() {
  20. //请求失败,打印异常
  21. @Override
  22. public void onFailure(@NonNull Call call, @NonNull IOException e) {
  23. e.printStackTrace();
  24. }
  25. //响应
  26. @Override
  27. public void onResponse(@NonNull Call call, @NonNull Response response) throws IOException {
  28. if (response != null) {
  29. String result = response.body().toString();
  30. //回调函数运行在子线程,不能直接操控UI
  31. //通过handler把天气信息发送到主线程显示
  32. Message message = new Message();
  33. message.what = 0;
  34. message.obj = result;
  35. handler.sendMessage(message);
  36. }
  37. }
  38. });
  39. }
  40. });
  41. }
  42. }
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50

WeatherHandler2:和上面的WeatherHandler基本无异,只是变了Activity,为了区分而已

  1. public class WeatherHandler2 extends Handler {
  2. private WeatherOkHttpActivity activity;
  3. public WeatherHandler2(WeatherOkHttpActivity activity){
  4. this.activity = activity;
  5. }
  6. @Override
  7. public void handleMessage(@NonNull Message msg) {
  8. super.handleMessage(msg);
  9. //接受到消息则把天气结果设置到文本框
  10. if(msg.what == 0){
  11. TextView txWeather = activity.findViewById(R.id.tx_weather);
  12. txWeather.setText((String) msg.obj);
  13. }
  14. }
  15. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

3. retrofit

在Android开发中,Retrofit是当下最热的一个网络请求库。

底层默认使用okhttp封装的,准确来说,网络请求的工作本质上是okhttp完成,而 Retrofit 仅负责网络请求接口的封装。

其作用主要是简化代码、提高可维护性。

另外,最重要的是:okhttp异步请求的回调运行在子线程,而retrofit的异步请求的回调默认运行在主线程。

使用retrofit时,不再需要使用handler机制手工进行线程间通信。

仍然使用天气的例子来介绍基本使用:

  1. //创建一个接口
  2. //指定url(不包含域名和参数),GET请求的参数通过@Query指定
  3. public interface WeatherService {
  4. //这里偷懒没有定义实体类,而是使用JsonObject代替
  5. @GET("v3/weather/weatherInfo")
  6. Call<JsonObject> fetchWeatherResult(@Query("key") String key,
  7. @Query("city") String city);
  8. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

Activity:

  1. public class WeatherRetrofitActivity extends AppCompatActivity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.activity_weather_retrofit);
  6. //点击按钮后,retrofit请求获取天气信息
  7. findViewById(R.id.bt_weather).setOnClickListener(new View.OnClickListener() {
  8. @Override
  9. public void onClick(View v) {
  10. Retrofit retrofit = new Retrofit.Builder()
  11. .baseUrl("https://restapi.amap.com")
  12. .addConverterFactory(GsonConverterFactory.create())
  13. .build();
  14. WeatherService weatherService = retrofit.create(WeatherService.class);
  15. Call<JsonObject> call = weatherService.fetchWeatherResult("***(此处为key)", "440300");
  16. call.enqueue(new Callback<JsonObject>() {
  17. //响应
  18. @Override
  19. public void onResponse(Call<JsonObject> call, Response<JsonObject> response) {
  20. //获得天气结果
  21. JsonObject result = response.body();
  22. //直接设置到textView,不再需要使用handler手动进行线程间通信
  23. TextView textView = findViewById(R.id.tx_weather);
  24. textView.setText(result.toString());
  25. }
  26. //请求失败
  27. @Override
  28. public void onFailure(Call<JsonObject> call, Throwable t) {
  29. t.printStackTrace();
  30. }
  31. });
  32. }
  33. });
  34. }
  35. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/330623
推荐阅读
相关标签
  

闽ICP备14008679号