06 2021 档案
摘要:Android设置简单的动画效果 默认中,Button是有动画效果的,但是TextView等却没有,简单设置其动画效果如下 xml中添加 android:background="?android:attr/selectableItemBackground" 背景效果 android:foregrou
阅读全文
摘要:常用添加 Android 库 1.圆角图片显示 添加依赖 dependencies 中添加implementation 'com.makeramen:roundedimageview:2.3.0' repositories 中添加mavenCentral() github地址 2.okhttp 添加
阅读全文
摘要:OkHttp的使用 在安卓中使用OkHttp的步骤如下: 在build.gradle中导入 implementation("com.squareup.okhttp3:okhttp:4.9.0") 使用OkHttp 如上即可使用 需要添加网络访问权限: <uses-permission android
阅读全文
摘要:添加依赖 implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1' implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1' implementation
阅读全文