43 lines
776 B
Java
43 lines
776 B
Java
package com.xscm.moduleutil.bean;
|
||
|
||
|
||
import com.example.moduletablayout.listener.CustomTabEntity;
|
||
|
||
/**
|
||
* 项目名称 qipao-android
|
||
* 包名:com.qpyy.module.me.bean
|
||
* 创建人 黄强
|
||
* 创建时间 2020/12/1 17:40
|
||
* 描述 describe
|
||
*/
|
||
public class HomePageTabBean implements CustomTabEntity {
|
||
public HomePageTabBean(String title) {
|
||
this.title = title;
|
||
}
|
||
|
||
public String getTitle() {
|
||
return title;
|
||
}
|
||
|
||
public void setTitle(String title) {
|
||
this.title = title;
|
||
}
|
||
|
||
private String title;
|
||
|
||
@Override
|
||
public String getTabTitle() {
|
||
return title;
|
||
}
|
||
|
||
@Override
|
||
public int getTabSelectedIcon() {
|
||
return 0;
|
||
}
|
||
|
||
@Override
|
||
public int getTabUnselectedIcon() {
|
||
return 0;
|
||
}
|
||
}
|