修改测试问题,shouye ytuijian

This commit is contained in:
18401019693 2022-08-10 23:45:34 +08:00
parent 2279823780
commit 743f06115d
4 changed files with 34 additions and 31 deletions

View File

@ -34,9 +34,9 @@ public class AnchorRecommendItemModel extends BaseModel {
*/
@SerializedName("islive")
private long islive = 0;
private String islive ="";
@SerializedName("uid")
private long uid = 0;
private String uid ="";
@SerializedName("title")
private String title = "";
@SerializedName("stream")
@ -46,21 +46,21 @@ public class AnchorRecommendItemModel extends BaseModel {
@SerializedName("thumb")
private String thumb = "";
@SerializedName("isvideo")
private long isvideo = 0;
private String isvideo ="";
@SerializedName("type")
private int type = 0;
private String type ="";
@SerializedName("type_val")
private String typeVal = "";
@SerializedName("anyway")
private long anyway = 0;
private String anyway ="";
@SerializedName("landscape")
private long landscape = 0;
private String landscape ="";
@SerializedName("liveclassid")
private long liveclassid = 0;
private String liveclassid ="";
@SerializedName("is_rong")
private long isRong = 0;
private String isRong ="";
@SerializedName("hot_num")
private long hotNum = 0;
private String hotNum ="";
@SerializedName("content_pic_size_one")
private String contentPicSizeOne = "";
@SerializedName("content_pic_size_two")
@ -106,20 +106,20 @@ public class AnchorRecommendItemModel extends BaseModel {
return this;
}
public long getIslive() {
public String getIslive() {
return islive;
}
public AnchorRecommendItemModel setIslive(long islive) {
public AnchorRecommendItemModel setIslive(String islive) {
this.islive = islive;
return this;
}
public long getUid() {
public String getUid() {
return uid;
}
public AnchorRecommendItemModel setUid(long uid) {
public AnchorRecommendItemModel setUid(String uid) {
this.uid = uid;
return this;
}
@ -160,20 +160,20 @@ public class AnchorRecommendItemModel extends BaseModel {
return this;
}
public long getIsvideo() {
public String getIsvideo() {
return isvideo;
}
public AnchorRecommendItemModel setIsvideo(long isvideo) {
public AnchorRecommendItemModel setIsvideo(String isvideo) {
this.isvideo = isvideo;
return this;
}
public int getType() {
public String getType() {
return type;
}
public AnchorRecommendItemModel setType(int type) {
public AnchorRecommendItemModel setType(String type) {
this.type = type;
return this;
}
@ -187,47 +187,47 @@ public class AnchorRecommendItemModel extends BaseModel {
return this;
}
public long getAnyway() {
public String getAnyway() {
return anyway;
}
public AnchorRecommendItemModel setAnyway(long anyway) {
public AnchorRecommendItemModel setAnyway(String anyway) {
this.anyway = anyway;
return this;
}
public long getLandscape() {
public String getLandscape() {
return landscape;
}
public AnchorRecommendItemModel setLandscape(long landscape) {
public AnchorRecommendItemModel setLandscape(String landscape) {
this.landscape = landscape;
return this;
}
public long getLiveclassid() {
public String getLiveclassid() {
return liveclassid;
}
public AnchorRecommendItemModel setLiveclassid(long liveclassid) {
public AnchorRecommendItemModel setLiveclassid(String liveclassid) {
this.liveclassid = liveclassid;
return this;
}
public long getIsRong() {
public String getIsRong() {
return isRong;
}
public AnchorRecommendItemModel setIsRong(long isRong) {
public AnchorRecommendItemModel setIsRong(String isRong) {
this.isRong = isRong;
return this;
}
public long getHotNum() {
public String getHotNum() {
return hotNum;
}
public AnchorRecommendItemModel setHotNum(long hotNum) {
public AnchorRecommendItemModel setHotNum(String hotNum) {
this.hotNum = hotNum;
return this;
}

View File

@ -69,7 +69,7 @@ public class SearchRecommendBodyItemViewHolder extends RecyclerView.ViewHolder {
@Override
public void onClick(View v) {
SearchModel searchModel = new SearchModel();
searchModel.setId(model.getUid());
searchModel.setId(Long.parseLong(model.getUid()));
Bus.get().post(new JumpUserHomeEvent(searchModel));
}
});

View File

@ -15,6 +15,7 @@ import com.yunbao.common.fragment.BaseFragment;
import com.yunbao.common.http.base.HttpCallback;
import com.yunbao.common.http.main.MainNetManager;
import com.yunbao.common.manager.SearchHistoryRecordManager;
import com.yunbao.common.utils.ToastUtil;
import com.yunbao.main.R;
import com.yunbao.main.adapter.SearchRecommendAdapter;
@ -84,6 +85,8 @@ public class SearchRecommendFragment extends BaseFragment {
@Override
public void onError(String error) {
ToastUtil.show(error);
loadData();
}
});
}

View File

@ -87,10 +87,10 @@ public class SearchRecommendBodyItemViewHolder extends RecyclerView.ViewHolder {
}
mNum.setText(formatBigNum.formatBigNum(String.valueOf(model.getHotNum())));
views.setVisibility(View.GONE);
if (model.getIslive() == 1) {
if (TextUtils.equals("1", model.getIslive())) {
views.setVisibility(View.VISIBLE);
//直播中
mType.setImageResource(MainIconUtil.getLiveTypeIcon(model.getType()));
mType.setImageResource(MainIconUtil.getLiveTypeIcon(Integer.parseInt(model.getType())));
mType.setVisibility(View.VISIBLE);
mLiveIco.setImageResource(R.mipmap.icon_main_rest_work);
mNum.setVisibility(View.VISIBLE);
@ -110,7 +110,7 @@ public class SearchRecommendBodyItemViewHolder extends RecyclerView.ViewHolder {
@Override
public void onClick(View v) {
SearchModel searchModel = new SearchModel();
searchModel.setId(model.getUid());
searchModel.setId(Long.parseLong(model.getUid()));
Bus.get().post(new JumpUserHomeEvent(searchModel));
}
});