跳转至
本文阅读量

1. Android 应用开发基础

1.1 概述

UI 界面 ⧉ 有两种,一种是传统的基于 View ⧉ 的,一种是新的基于 Compose ⧉

1.2 都有哪些 Package

1.3 各种 Guides

1.4 Composable

1.5 Android 工程目录结构

1.6 传统 XML View 方式

1.7 Fragement

1.7.1 为什么会有 Framement

1.7.2 生命周期

1.7.3 加入到 Activity

有两种方式

  1. 通过 xml 静态添加
  2. 通过 Java 动态添加

1.7.3.1 xml 静态添加

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <fragment
        android:name="com.example.android.FooFragment"
        android:id="@+id/fooFragment"
        android:layout_width="match_parent" 
        android:layout_height="match_parent" />

</LinearLayout>

1.7.3.2 Java 动态添加

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

  <FrameLayout
       android:id="@+id/your_placeholder"
       android:layout_width="match_parent"
       android:layout_height="match_parent">
  </FrameLayout>

</LinearLayout>
// Begin the transaction
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
// Replace the contents of the container with the new fragment
ft.replace(R.id.your_placeholder, new FooFragment());
// or ft.add(R.id.your_placeholder, new FooFragment());
// Complete the changes added above
ft.commit();

1.7.4 Fragement 通信

1.7.5 Fragement 导航

1.8 ActionBar

1.8.1 添加按钮

1.8.2 响应按钮

1.9 一些概念

https://developer.android.com/guide ⧉

App Components * Activities Introduction to activities ⧉ * Services Services overview ⧉ * Broadcast receivers * Content providers * * Intent Intents and intent filters ⧉ * ContentResolver

  • startActivity() / startActivityForResult()

1.10 Navigation

NavController.navigate(). NavHostFragment NavigationView

NavigationUI NavController

navigation graph 是什么?

Safe Args

https://developer.android.com/guide/navigation ⧉

TabLayout

1.11 Service

A service is bound when an application component binds to it by calling bindService()

1.12 LiveData

六、总结 * 在主线程更新 LiveData 的值,避免后台线程更新。 * 对data.value使用安全调用操作符,防止空指针异常。 * 避免多次观察同一 LiveData,合并操作或使用不同 LiveData 分离逻辑。 * 仅在 ViewModel 内部修改 LiveData,外部通过方法调用修改。 * 利用Transformations对 LiveData 进行数据转换。 * 遵循这些注意事项可以帮助你更有效地使用 LiveData,并避免一些常见的问题和错误。

SharedPreferences vs LiveData

AndroidX 和 Android Support 之间类的映射 https://developer.android.com/jetpack/androidx/migrate/class-mappings ⧉

NavGraph is a collection of NavDestination nodes fetchable by ID.

1.13 依赖注入

依赖注入框架 * Dagger ⧉ 编译期注入,性能更好 * Guice ⧉ 反射注入 * Hilt Jetpack's recommended library for dependency injection,依赖与 Dagger

@AndroidEntryPoint

1.14 事件总线

使用 GreenRobot 的 EventBus 作为事件总线库

1.15 Resource

1.15.1 代码中访问 Resource

标准格式

[<package_name>.]R.<resource_type>.<resource_name>
* package_name: 资源所在的 package 包名,如果是本项目资源访问,则可以省略 * resource_type: 资源类型 * resource_name: 资源名字

1.16 示例工程

1.17 ScreeenLayout

  • Screen 大小:
    • SCREENLAYOUT_SIZE_SMALL
    • SCREENLAYOUT_SIZE_NORMAL
    • SCREENLAYOUT_SIZE_LARGE
    • SCREENLAYOUT_SIZE_XLARGE
  • Screen 是否加长:
    • SCREENLAYOUT_LONG_NO
    • SCREENLAYOUT_LONG_YES
  • Screen LRT:
    • SCREENLAYOUT_LAYOUTDIR_LTR
    • SCREENLAYOUT_LAYOUTDIR_RTL
  • Screen 是否 Round:
    • SCREENLAYOUT_ROUND_NO
    • SCREENLAYOUT_ROUND_YES

1.18 导航

几种分类 * NavigationBar: * NavigationRail: * NavigationDrawer:

1.19 Adaptive design

1.20 Storage

使用 SharedPreferences 保存少量的 kv 格式的数据。最新的使用 [DataStore] 来保存少量 kv 数据,替换 [SharedPreferences]

1.21 Setting 设计

1.22 未分类

A material Surface providing the background, shape, click handling, etc.

1.23 Scope

1.24 UDF

1.25 Android Setting Design Guideline

使用 androidx.preference ⧉ 可以进行 Setting,但 Preference 从 Android 10 已经废弃

1.26 参考

1.26.1 Fragement

1.26.2 ActionBar