光环助手V3.3-我的光环优化汇总(完成:2.3.6.7.8.9.10)

光环助手V3.3优化需求汇总(20180520)(UI相关)
This commit is contained in:
kehaoyuan
2018-05-22 17:12:22 +08:00
parent 1a02239dd2
commit 2bd218fd95
36 changed files with 385 additions and 127 deletions

View File

@ -413,7 +413,7 @@ public class InstallFragmentAdapter extends BaseRecyclerAdapter<ViewHolder> {
} else {
holder.gameName.setText(String.format("%s - %s", gameEntity.getName(),
PlatformUtils.getInstance(mContext).getPlatformName(gameEntity.getApk().get(0).getPlatform())));
holder.gameDes.setText(String.format("V%s", gameEntity.getApk().get(0).getVersion()));
holder.gameDes.setText(String.format("V%s", PackageUtils.getVersionByPackage(mContext, gameEntity.getApk().get(0).getPackageName())));
}
GameViewUtils.setLabelList(mContext, holder.gameLabelList, gameEntity.getTag(), "");
@ -521,6 +521,7 @@ public class InstallFragmentAdapter extends BaseRecyclerAdapter<ViewHolder> {
public interface onSmoothLayoutListener {
void onSmooth();
void onOpen(); // 启动跳转
}