1. Android 应用开发基础¶
1.1 概述¶
UI 界面 ⧉ 有两种,一种是传统的基于 View ⧉ 的,一种是新的基于 Compose ⧉ 的
1.2 都有哪些 Package¶
- Compose 支持 M3 设计 androidx.compose.material3:material3 ⧉
- MaterialTheme
- Material Theme Builder ⧉
- 这里 ⧉列了一些 Theme/Styles 的相关用法
- androidx.navigation:navigation-compose
1.3 各种 Guides¶
- Guide to App Architecture https://developer.android.com/topic/architecture ⧉
- ViewModel Guides https://developer.android.com/topic/libraries/architecture/viewmodel ⧉
- Lifecycle Guides https://developer.android.com/guide/components/activities/activity-lifecycle ⧉
- Handle configuration changes 如何应对配置变化 https://developer.android.com/guide/topics/resources/runtime-changes ⧉
- Activities Guides https://developer.android.com/guide/components/activities/intro-activities ⧉
- Processes and threads overview https://developer.android.com/guide/components/processes-and-threads ⧉
- Service Overview https://developer.android.com/develop/background-work/services ⧉
- Save UI states https://developer.android.com/topic/libraries/architecture/saving-states ⧉
- State holders and UI State https://developer.android.com/topic/architecture/ui-layer/stateholders ⧉
- Processes and Application Lifecycle https://developer.android.com/guide/components/activities/process-lifecycle ⧉
- Paging library overview https://developer.android.com/topic/libraries/architecture/paging/v3-overview ⧉
- LiveData overview https://developer.android.com/topic/libraries/architecture/livedata ⧉
- Unidirectional Data Flow (UDF)
- Storage Overview https://developer.android.com/training/data-storage ⧉ Android 系统文件及路径的规划
- Web Binding https://developer.android.com/topic/libraries/view-binding ⧉
- Data Binding
- Web Binding vs Data Binding https://developer.android.com/topic/libraries/view-binding#data-binding ⧉
- App resources overview guide. https://developer.android.com/guide/topics/resources/providing-resources ⧉
- Screen compatibility overview https://developer.android.com/guide/practices/screens_support ⧉
1.4 Composable¶
- Composable Lifecycle https://developer.android.com/develop/ui/compose/lifecycle ⧉
1.5 Android 工程目录结构¶
- https://guides.codepath.com/android/Android-Directory-Structure ⧉
- https://developer.android.com/studio/projects#ApplicationProjects ⧉
1.6 传统 XML View 方式¶
1.7 Fragement¶
1.7.1 为什么会有 Framement¶
1.7.2 生命周期¶
1.7.3 加入到 Activity¶
有两种方式
- 通过 xml 静态添加
- 通过 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()
- 一些核心领域 https://developer.android.com/develop ⧉
- APP Architecture https://developer.android.com/topic/architecture ⧉
- Lifecycle https://developer.android.com/codelabs/android-lifecycles ⧉
-
ViewModel https://developer.android.com/topic/libraries/architecture/viewmodel.html ⧉
-
https://developer.android.com/jetpack/androidx/releases/paging ⧉
-
RecyclerView https://developer.android.com/reference/androidx/recyclerview/widget/RecyclerView ⧉
- WorkManager
- https://developer.android.com/jetpack/androidx/releases/work ⧉
-
https://developer.android.com/topic/libraries/architecture/workmanager ⧉
-
Android KTX https://developer.android.com/kotlin/ktx ⧉
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>
1.16 示例工程¶
- https://medium.com/androiddevelopers/introducing-android-sunflower-e421b43fe0c2 ⧉
- https://mp.weixin.qq.com/s/k-zQVB5EhsKXIR1H3hbGYQ ⧉
- https://github.com/android/nowinandroid ⧉ A fully functional Android app built entirely with Kotlin and Jetpack Compose
- https://github.com/android/architecture-samples ⧉
- https://github.com/android/compose-samples ⧉
- https://github.com/android/storage-samples ⧉
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¶
- https://codelabs.developers.google.com/jetpack-compose-adaptability#0 ⧉
- https://m3.material.io/foundations/adaptive-design/overview ⧉
1.20 Storage¶
使用 SharedPreferences 保存少量的 kv 格式的数据。最新的使用 [DataStore] 来保存少量 kv 数据,替换 [SharedPreferences]
1.21 Setting 设计¶
1.22 未分类¶
- NinePatch drawables https://developer.android.com/develop/ui/views/graphics/drawables#nine-patch ⧉
- Show an app chooser https://developer.android.com/training/basics/intents/sending#AppChooser ⧉
- Let other apps start your activity https://developer.android.com/training/basics/intents/filters ⧉ *
- Android 代码片段 https://github.com/android/snippets ⧉
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¶
- https://guides.codepath.com/android/Creating-and-Using-Fragments ⧉
Within a fragment-oriented architecture, activities become navigational containers that are primarily responsible for navigation to other activities, presenting fragments and passing data.
- https://guides.codepath.com/android/Using-DialogFragment ⧉