当前位置: 首页 > 工具软件 > XUI > 使用案例 >

Android项目中使用XUI框架的准备工作

徐瑞
2023-12-01

1.先在项目根目录的 build.gradle 的 repositories 添加:

allprojects {
     repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

2.然后在dependencies添加:

dependencies {
  ...
  //androidx项目
  implementation 'com.github.xuexiangjys:XUI:1.1.6'

  implementation 'androidx.appcompat:appcompat:1.1.0'
  implementation 'androidx.recyclerview:recyclerview:1.1.0'
  implementation 'com.google.android.material:material:1.1.0'
  implementation 'com.github.bumptech.glide:glide:4.11.0'
}

在最后一行图片库的引用中,最好使用4.8.0版本,否则可能后续会出现不匹配问题

3.初始化XUI设置

1.调整应用的基础主题(必须)

<style name="AppTheme" parent="XUITheme.Phone">

    <!-- 自定义自己的主题样式 -->

    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>

</style>

2.创建一个java类,用来初始化UI框架和开启框架调试模式

package com.example.kiki_xuexue;

import android.app.Application;

import com.xuexiang.xui.XUI;

public class MyApp extends Application {
    @Override
    public void onCreate() {
        super.onCreate();

        XUI.init(this);  //初始化UI 框架
        XUI.debug(true); //开启UI框架调试
    }
}

3.然后就可以调用XUI框架中自己想使用的控件了

必须注意,XUI框架的使用AS sdk必须在3.6或者3.6以上,不然不能正常运行

 类似资料: