[Upgrade module]针对Fragment 增加getTagName ,后续涉及到的Fragment进行重构加载方式

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2021-11-09 18:51:27 +08:00
parent ec2c92fd33
commit c8f8a3d3bb
24 changed files with 220 additions and 6 deletions

View File

@@ -23,6 +23,8 @@ import java.util.List;
* describe:车队信息
*/
public class VehicleTeamFragment extends MvpFragment<VehicleTeamView, VehicleTeamPresenter> implements VehicleTeamView {
private static final String TAG = "VehicleTeamFragment";
private TextView tvNum;
private ImageView ivClose;
private RecyclerView rvTeammates;
@@ -40,6 +42,11 @@ public class VehicleTeamFragment extends MvpFragment<VehicleTeamView, VehicleTea
return R.layout.module_car_chatting_fragment_team_view;
}
@Override
public String getTagName() {
return TAG;
}
@Override
protected void initViews() {
tvNum = findViewById(R.id.tv_num);