allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
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版本,否则可能后续会出现不匹配问题
<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>
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框架调试
}
}
必须注意,XUI框架的使用AS sdk必须在3.6或者3.6以上,不然不能正常运行