UI修改:1.动态话题列表 2.发布动态 3.动态详情 4.选择动态弹窗

This commit is contained in:
huangjian
2021-03-26 18:38:57 +08:00
parent 0a9f65adbb
commit 6735f1f1fb
16 changed files with 82 additions and 71 deletions

View File

@@ -138,7 +138,7 @@ public abstract class AbstractMvpPresenter<V extends IMvpBaseView> implements Li
};
private void logInfo(String msg) {
if (BuildConfig.DEBUG)
if (false)
Log.e(TAG, msg);
}

View File

@@ -137,7 +137,7 @@ public class BaseMvpProxy<V extends IMvpBaseView, P extends AbstractMvpPresenter
}
private void logInfo(String msg) {
if (BuildConfig.DEBUG)
if (false)
Log.e(TAG, msg);
}
}