zoukankan      html  css  js  c++  java
  • 常用 Android 库

    常用添加 Android 库

    1.圆角图片显示
    添加依赖

    dependencies 中添加implementation 'com.makeramen:roundedimageview:2.3.0'
    repositories 中添加mavenCentral()
    github地址

    2.okhttp
    添加依赖

    implementation("com.squareup.okhttp3:okhttp:4.9.0")
    okhttp官方地址

    3.Glide 开源图片管理器
    添加依赖

    implementation 'com.github.bumptech.glide:glide:4.11.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
    Glide官方地址

    4.CarView 卡片式布局
    添加依赖

    implementation("androidx.cardview:cardview:1.0.0")
    CarView官方地址

    5.Room 数据库管理
    添加依赖

    def room_version = "2.3.0"
    
    /*
      好像添加下面两条也能够运行?
    */
        implementation("androidx.room:room-runtime:$room_version")
        annotationProcessor "androidx.room:room-compiler:$room_version"
    
        // To use Kotlin annotation processing tool (kapt)
        kapt("androidx.room:room-compiler:$room_version")
        // To use Kotlin Symbolic Processing (KSP)
        ksp("androidx.room:room-compiler:$room_version")
    
        // optional - Kotlin Extensions and Coroutines support for Room
        implementation("androidx.room:room-ktx:$room_version")
    
        // optional - RxJava2 support for Room
        implementation "androidx.room:room-rxjava2:$room_version"
    
        // optional - RxJava3 support for Room
        implementation "androidx.room:room-rxjava3:$room_version"
    
        // optional - Guava support for Room, including Optional and ListenableFuture
        implementation "androidx.room:room-guava:$room_version"
    
        // optional - Test helpers
        testImplementation("androidx.room:room-testing:$room_version")
    
    
    这是小睿的博客,如果需要转载,请标注出处啦~ヾ(≧▽≦*)o谢谢。
  • 相关阅读:
    c++ 文件读写模板
    sys和system用户的权限区别
    Oracle cmd 命令
    sqldeveloper的安装及其使用教程
    Oracle权限管理详解(2)
    Oracle权限管理详解(1)
    Oracle使用基础
    win7 64位操作系统中 Oracle 11g 安装教程(图解)
    MySQL cmd操作
    Linux下安装tomcat
  • 原文地址:https://www.cnblogs.com/Yunrui-blogs/p/14881256.html
Copyright © 2011-2022 走看看