配置XUI方法
ps:虽然开发者已经写的很详细了,但是对于我这种半路用as的小白来说,还是不太懂,摸索了一阵后,终于成功了。
添加依赖:

在Android目录下:
第一个build.grade(项目名)中添加 maven { url "https://jitpack.io" }
第二个build.grade(app)中添加
implementation 'com.github.xuexiangjys:XUI:1.1.3'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'com.google.android.material:material:1.1.0-beta01'
implementation 'com.github.bumptech.glide:glide:4.11.0'初始化XUI
在project目录中
项目名xxx->app->src->main->java->.com.xxx.项目名称下新建文件(名称随意)
继承
APPlication
然后初始化框架
public class Myapp extends Application {
@Override
public void onCreate() {
super.onCreate();
XUI.init(this); //初始化UI框架
XUI.debug(true); //开启UI框架调试日志
}
}
不要忘了在AndroidManifest.xml中增加
android:name=".Myapp" |
配置主题
在res->values->styles.xml中修改主题
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="XUITheme.Phone">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/xui_config_color_main_theme</item>
<item name="colorPrimaryDark">@color/xui_config_color_main_theme</item>
<item name="colorAccent">@color/xui_config_color_main_theme</item>
</style>
</resources>这样就基本上完成了XUI的简单配置,具体使用参见作者demo