腾讯bugly在线升级自定义布局
2020-06-09 本文已影响0人
jiangbin1992
一:使用腾讯bugly好多年了,包括腾讯自己的产品大多都用的是这个在线升级方案,目前官方给提供的文档很清晰,但是真正细节问题却很突出
例如:我不想使用在线升级的固定样式怎么办?
答案:1:可以选择升级的第二种样式,2:自定义布局
没错!看看官方文档的描述:
1.配置示例(路径app/build.gradle):
android {
defaultConfig {
ndk {
//设置支持的SO库架构
abiFilters 'armeabi' //, 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
}
}
}
dependencies {
//注释掉原有bugly的仓库
//compile 'com.tencent.bugly:crashreport:latest.release'//其中latest.release指代最新版本号,也可以指定明确的版本号,例如2.3.2
compile 'com.tencent.bugly:crashreport_upgrade:latest.release'//其中latest.release指代最新版本号,也可以指定明确的版本号,例如1.2.0
compile 'com.tencent.bugly:nativecrashreport:latest.release' //其中latest.release指代最新版本号,也可以指定明确的版本号,例如2.2.0
}
2.非常顺滑的加入了在申请id,application中初始化就完事了
Bugly.init(this, "e3e437616f", false);
3.升级方式上图:
create-upgrade-strategy.png
4.样式第一种默认的,第二种可以上传头部图片,但是样式固定,第三种完全自定义,自己承接声明周期方法,自己写activity,自定义布局,值得注意的是对应的tag ID要和官方一致
5.问题是第一种我能不能自定义呢?
答案是可以的!上代码,大致思路是:在application中初始化一些必要方法,加载一个本地布局,除了官方必要的布局,ID tag外自己可随意加个性化设计
/**
* 初始化bugly版本升级
*/
private void initBuglyUpdate() {
/***** Beta高级设置 *****/
/**
* true表示app启动自动初始化升级模块;
* false不会自动初始化;
* 开发者如果担心sdk初始化影响app启动速度,可以设置为false,
* 在后面某个时刻手动调用Beta.init(getApplicationContext(),false);
*/
Beta.autoInit = true;
/**
* true表示初始化时自动检查升级;
* false表示不会自动检查升级,需要手动调用Beta.checkUpgrade()方法;
*/
Beta.autoCheckUpgrade = true;
/**
* 设置升级检查周期为60s(默认检查周期为0s),60s内SDK不重复向后台请求策略);
*/
Beta.upgradeCheckPeriod = 60 * 1000;
/**
* 设置启动延时为1s(默认延时3s),APP启动1s后初始化SDK,避免影响APP启动速度;
*/
Beta.initDelay = 1 * 1000;
/**
* 设置sd卡的Download为更新资源保存目录;
* 后续更新资源会保存在此目录,需要在manifest中添加WRITE_EXTERNAL_STORAGE权限;
*/
// Beta.storageDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
/**
* 点击过确认的弹窗在APP下次启动自动检查更新时会再次显示;
*/
Beta.showInterruptedStrategy = true;
/**
* 只允许在MainActivity上显示更新弹窗,其他activity上不显示弹窗;
* 不设置会默认所有activity都可以显示弹窗;
*/
Beta.canShowUpgradeActs.add(MainActivity.class);
/**
* 自定义布局
*/
Beta.upgradeDialogLayoutId = R.layout.upgrade_dialog;//关键代码写这个布局添加自己想要的
/**
* 设置自定义tip弹窗UI布局
* 注意:因为要保持接口统一,需要用户在指定控件按照以下方式设置tag,否则会影响您的正常使用:
* 标题:beta_title,如:android:tag="beta_title"
* 提示信息:beta_tip_message 如: android:tag="beta_tip_message"
* 取消按钮:beta_cancel_button 如:android:tag="beta_cancel_button"
* 确定按钮:beta_confirm_button 如:android:tag="beta_confirm_button"
* 详见layout/tips_dialog.xml
*/
//Beta.tipsDialogLayoutId = R.layout.tips_dialog;
Beta.upgradeDialogLifecycleListener = new UILifecycleListener<UpgradeInfo>() {
@Override
public void onCreate(Context context, View view, UpgradeInfo upgradeInfo) {
// 通过tag方式获取控件,并更改布局内容
TextView textView = (TextView) view.findViewWithTag("beta_upgrade_feature");
// 更多的操作:比如设置控件的点击事件
textView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
}
});
}
@Override
public void onStart(Context context, View view, UpgradeInfo upgradeInfo) {
}
@Override
public void onResume(Context context, View view, UpgradeInfo upgradeInfo) {
// 注:可通过这个回调方式获取布局的控件,如果设置了id,可通过findViewById方式获取,如果设置了tag,可以通过findViewWithTag,具体参考下面例子:
}
@Override
public void onPause(Context context, View view, UpgradeInfo upgradeInfo) {
}
@Override
public void onStop(Context context, View view, UpgradeInfo upgradeInfo) {
}
@Override
public void onDestroy(Context context, View view, UpgradeInfo upgradeInfo) {
// ToastUtils.showGravityToast(MyApplication.this,"更新后注意通知栏下载进度...");
}
};
}
把布局代码也贴上来
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/transparent_ban"
android:gravity="center">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/shape_bai5"
android:gravity="center"
android:orientation="vertical"
>
<!-- 通过id设置的控件 -->
<!--<ImageView-->
<!--android:id="@+id/imageview"-->
<!--android:layout_width="wrap_content"-->
<!--android:layout_height="wrap_content"-->
<!--android:src="@mipmap/ic_launcher" />-->
<!--<!–通过tag设置的控件 –>-->
<!--<TextView-->
<!--android:layout_width="wrap_content"-->
<!--android:layout_height="wrap_content"-->
<!--android:tag="textview"-->
<!--android:text="customText" />-->
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tag="beta_upgrade_banner"
android:scaleType="centerCrop"
android:src="@mipmap/new_version"/>
<!-- 【必设】升级标题控件tag:beta_title-->
<TextView
android:layout_width="match_parent"
android:layout_height="42dp"
android:ellipsize="end"
android:gravity="center_vertical"
android:maxLines="1"
android:paddingLeft="10dp"
android:tag="beta_title"
android:text="title"
android:textColor="#273238"
android:textSize="18sp" />
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:visibility="invisible"
android:background="#99273238" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="6dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="4dp">
<!-- 【必设】升级信息控件tag:beta_upgrade_info-->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:tag="beta_upgrade_info"
android:text="info"
android:textColor="#757575"
android:textSize="14sp"
android:visibility="gone"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="8dp"
android:text="@string/strUpgradeDialogFeatureLabel"
android:textColor="#273238"
android:textSize="14sp"
android:visibility="gone"/>
<!-- 【必设】更新属性控件tag:beta_upgrade_feature-->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:tag="beta_upgrade_feature"
android:text="feature"
android:lineSpacingExtra="5dp"
android:textColor="#273238"
android:textSize="14sp" />
</LinearLayout>
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp">
<!-- 【必设】取消按钮tag:beta_cancel_button-->
<TextView
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="1"
android:ellipsize="end"
android:gravity="center"
android:maxLines="1"
android:tag="beta_cancel_button"
android:text="cancel"
android:textColor="@color/white"
android:textSize="16sp" />
<!-- 【必设】确认按钮tag:beta_confirm_button-->
<TextView
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="1"
android:ellipsize="end"
android:gravity="center"
android:maxLines="1"
android:tag="beta_confirm_button"
android:text="confirm"
android:layout_marginLeft="10dp"
android:textColor="@color/white"
android:textSize="16sp"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
我加了头部图看起来是不是nice啊,圆角什么的
image.png
好了巴拉巴拉上线测试一下:
image.png我曹怎么没出来,原因我找了一下,就是在application中初始化的时候必须布局声明要在key声明前边
//版本升级
initBuglyUpdate();
Bugly.init(this, "04ef107704", false);
这样才可以,如果你想着先初始化在调用那么就跟我一样的情况,布局没变化
image.png
因为直接init的话布局直接先初始化加载了 在写后边的就没用了!