|
@@ -13,7 +13,7 @@ public class HomeMenuBean {
|
|
|
public List<BannerBean> banner;
|
|
|
public List<ItemBean> suspension;//悬浮按钮
|
|
|
|
|
|
- public static class BannerBean implements Parcelable{
|
|
|
+ public static class BannerBean implements Parcelable {
|
|
|
/**
|
|
|
* updateName : 刘俊驰
|
|
|
* subTypeName :
|
|
@@ -256,10 +256,11 @@ public class HomeMenuBean {
|
|
|
public int coverImageRes;
|
|
|
|
|
|
|
|
|
- public static ItemBean createByLocal(String tag,int drawRes){
|
|
|
- ItemBean bean =new ItemBean();
|
|
|
+ public static ItemBean createByLocal(String tag, int drawRes, String title) {
|
|
|
+ ItemBean bean = new ItemBean();
|
|
|
bean.linkUrl = tag;
|
|
|
- bean.coverImageRes =drawRes;
|
|
|
+ bean.coverImageRes = drawRes;
|
|
|
+ bean.title = title;
|
|
|
return bean;
|
|
|
}
|
|
|
|