feat:屏蔽社区

This commit is contained in:
Max
2023-11-26 15:23:23 +08:00
parent ced0ceb6e3
commit 9828bd433d
2 changed files with 18 additions and 18 deletions

View File

@@ -139,7 +139,6 @@ public class MainActivity extends BaseMvpActivity<IMainView, MainPresenter>
implements MainTabLayout.OnTabClickListener, IMainView, View.OnClickListener {
public static final String MSG_TAB = "msgTab";
public static final String GAME_TAB = "gameTab";
private static final String TAG = "MainActivity";
private static final String EXTRA_APP_QUIT = "APP_QUIT";
private final SparseArray<Fragment> fragmentArray = new SparseArray<>();
@@ -168,7 +167,7 @@ public class MainActivity extends BaseMvpActivity<IMainView, MainPresenter>
{
fragmentArray.put(MainTabType.TAB_TYPE_HOME, new HomeFragment());
fragmentArray.put(MainTabType.TAB_TYPE_SQUARE, new SquareFragment());
// fragmentArray.put(MainTabType.TAB_TYPE_SQUARE, new SquareFragment());
fragmentArray.put(MainTabType.TAB_TYPE_MSG, new ContactsListFragment());
fragmentArray.put(MainTabType.TAB_TYPE_ME, new MeFragment());
}
@@ -340,22 +339,22 @@ public class MainActivity extends BaseMvpActivity<IMainView, MainPresenter>
}
}
private void checkShowAnchorCardView() {
if (touchRunnable != null || !mResumed || AvRoomDataManager.get().mCurrentRoomInfo != null)
return;
int anchorCardViewType = DemoCache.readAnchorCardView();
if (anchorCardViewType == 2) {
if (CurrentTimeUtils.getCurrentTime() - DemoCache.readAnchorCardViewTime() > 15 * 60 * 1000) {
touchRunnable = () -> {
touchRunnable = null;
homeViewModel.requestAnchorInfo();
};
mMainTabLayout.postDelayed(touchRunnable, 5000);
}
} else if (anchorCardViewType == 1 || DemoCache.readLaunchCount() == 1) {
homeViewModel.requestAnchorInfo();
}
}
// private void checkShowAnchorCardView() {
// if (touchRunnable != null || !mResumed || AvRoomDataManager.get().mCurrentRoomInfo != null)
// return;
// int anchorCardViewType = DemoCache.readAnchorCardView();
// if (anchorCardViewType == 2) {
// if (CurrentTimeUtils.getCurrentTime() - DemoCache.readAnchorCardViewTime() > 15 * 60 * 1000) {
// touchRunnable = () -> {
// touchRunnable = null;
// homeViewModel.requestAnchorInfo();
// };
// mMainTabLayout.postDelayed(touchRunnable, 5000);
// }
// } else if (anchorCardViewType == 1 || DemoCache.readLaunchCount() == 1) {
// homeViewModel.requestAnchorInfo();
// }
// }
@Override
protected void onPause() {

View File

@@ -19,6 +19,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:visibility="gone"
android:layout_weight="1" />
<com.chwl.app.ui.widget.MainRedPointTab