zengjiebin пре 7 година
родитељ
комит
433d3d1b24

+ 4 - 1
app/src/main/java/com/sheep/gamegroup/module/game/activity/ActGameGroupOrGameDetail.java

@@ -110,6 +110,8 @@ public class ActGameGroupOrGameDetail extends BaseActivity {
     TextView gc_game_app_detail_bt1;
     @BindView(R.id.gc_game_app_detail_name)
     TextView gc_game_app_detail_name;
+    @BindView(R.id.gc_game_app_detail_line)
+    View gc_game_app_detail_line;
     @BindView(R.id.gc_game_app_detail_bt2)
     TextView gc_game_app_detail_bt2;
     @BindView(R.id.gc_game_app_detail_bt3)
@@ -180,6 +182,7 @@ public class ActGameGroupOrGameDetail extends BaseActivity {
             ViewUtil.setVisibility(item_gc_game_app_list_bottom, true);
             ViewUtil.setVisibility(item_gc_game_app_list_top, false);
             ViewUtil.setVisibility(gc_game_app_detail_bt2, false);
+            ViewUtil.setVisibility(gc_game_app_detail_line, false);
             ViewUtil.setText(item_gc_game_app_list_tv, "比一比");
             item_gc_game_app_list_rv.setHasFixedSize(true);
             item_gc_game_app_list_rv.setNestedScrollingEnabled(false);
@@ -253,7 +256,7 @@ public class ActGameGroupOrGameDetail extends BaseActivity {
         //加载游戏名字
         ViewUtil.setText(gc_game_app_detail_name, gameEntity.getApp().getName());
         //加载游戏大小与多少人在玩信息
-        ViewUtil.setText(gc_game_app_detail_info_tv, gameGroup == null ? gameEntity.getApp().getInfo() : gameEntity.getApp().getInfoContainGameFrom());
+        ViewUtil.setText(gc_game_app_detail_info_tv, gameGroup == null ? gameEntity.getApp().getInfoContainGameFrom() : gameEntity.getApp().getInfo());
         //加载游戏标签
         if (gameEntity.getApp().getTags() != null) {
             tagList.clear();

+ 1 - 1
app/src/main/java/com/sheep/gamegroup/module/skin/util/SkinUtil.java

@@ -136,7 +136,7 @@ public class SkinUtil {
     }
 
     private static boolean isNewYear(int year, int month, int day) {
-        return year == 2019 && month == 2 && day < 20;// && day < 3;
+        return year == 2019 && month < 4 ;//&& day < 20 && day < 3;
     }
 
     public static String getSkinPath(String skinName) {