Skip to content

Commit 193df11

Browse files
committed
修改演示效果
1 parent 60e495a commit 193df11

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

app/src/main/java/com/aries/library/fast/demo/impl/ActivityControlImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public boolean setNavigationBar(Activity activity, NavigationViewHelper helper,
214214
helper.setLogEnable(BuildConfig.DEBUG)
215215
.setPlusNavigationViewEnable(true)
216216
//此处为配合BGASwipeBackHelper滑动返回效果-如不使用BGASwipeBackHelper推荐使用上面的方法
217-
.setPlusNavigationViewEnable(true, true, true)
217+
// .setPlusNavigationViewEnable(true, true, true)
218218
.setNavigationBarLightMode(NavigationBarUtil.isSupportNavigationBarFontChange() && isPlusView(activity))
219219
.setOnKeyboardVisibilityChangedListener(getOnKeyboardVisibilityChangedListener(activity))
220220
.setBottomView(PicturePreviewActivity.class.isAssignableFrom(activity.getClass()) ?

app/src/main/java/com/aries/library/fast/demo/module/main/MainActivity.java

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
import android.view.View;
88
import android.widget.ImageView;
99

10-
import androidx.appcompat.app.AlertDialog;
11-
1210
import com.aries.library.fast.demo.R;
1311
import com.aries.library.fast.demo.module.WebViewActivity;
1412
import com.aries.library.fast.demo.module.activity.ActivityFragment;
@@ -27,6 +25,7 @@
2725
import java.util.ArrayList;
2826
import java.util.List;
2927

28+
import androidx.appcompat.app.AlertDialog;
3029
import butterknife.BindView;
3130

3231
/**
@@ -126,9 +125,20 @@ public void onClick(DialogInterface dialog, int which) {
126125
}
127126
}
128127

128+
@Override
129+
public void onTabSelect(int position) {
130+
LoggerManager.d("OnTabSelectListener:onTabSelect:" + position);
131+
}
132+
133+
@Override
134+
public void onTabReselect(int position) {
135+
LoggerManager.d("OnTabSelectListener:onTabReselect:" + position);
136+
}
137+
129138
@Override
130139
protected void onDestroy() {
131140
super.onDestroy();
132141
LoggerManager.i(TAG, "onDestroy");
133142
}
143+
134144
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ext{
3131
minLibSdkVersion = 15
3232
targetSdkVersion = 28
3333
supportVersion = "1.0.0"
34-
widgetVersion = "3.2.24"
34+
widgetVersion = "3.2.25"
3535
versionCode = 247
3636
versionName = "2.3.5"
3737
}

0 commit comments

Comments
 (0)