温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Android如何自定义View实现公交成轨迹图

发布时间:2021-09-27 13:49:03 来源:亿速云 阅读:146 作者:小新 栏目:编程语言

这篇文章主要介绍Android如何自定义View实现公交成轨迹图,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

具体内容如下

总体分析下:水平方向recyclewview,item包含定位点,站台位置和站台名称。

实现:

1.继承framelayout,实现构造方法:

public class BusStopPlateView extends FrameLayout {... public BusStopPlateView(@NonNull Context context) { super(context); initView(context); } public BusStopPlateView(@NonNull Context context, @Nullable AttributeSet attrs) { super(context, attrs); initView(context); } public BusStopPlateView(@NonNull Context context, @Nullable AttributeSet attrs, @AttrRes int defStyleAttr) { super(context, attrs, defStyleAttr); initView(context); } private void initView(Context context) { ... //设置recycleview LayoutInflater.from(context).inflate(R.layout.xxx, this, true); mRecyclerView = (RecyclerView) findViewById(R.id.recycle); mRecyclerView.setLayoutManager(new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false)); mBusStopPlateAdapter = new BusStopPlateAdapter(mStationList); mRecyclerView.setAdapter(mBusStopPlateAdapter);  ...}...}

2.recycleview适配器:初始化的时候设置起点设置终点设置车道设置当前车位置的下标

/** * 设置车道 */ private void setDriveway(BaseViewHolder helper, BusStopPlateStationInfo item) { if (helper.getAdapterPosition() <= adminCurrentIndex) {  helper.getView(R.id.v_daolu).setSelected(true);  helper.getView(R.id.iv_jiantou).setSelected(true); } else {  helper.getView(R.id.v_daolu).setSelected(false);  helper.getView(R.id.iv_jiantou).setSelected(false); } } /** * 设置起点 */ private void setStartStation(BaseViewHolder helper, BusStopPlateStationInfo item) { helper.setVisible(R.id.v_daolu, false)  .setBackgroundRes(R.id.iv_jiantou, R.drawable.bg_busstop_vdaolu_start); } /** * 设置终点 */ private void setEndStation(BaseViewHolder helper, BusStopPlateStationInfo item) { helper.setBackgroundRes(R.id.iv_jiantou, R.drawable.bg_busstop_vdaolu_end)  .setBackgroundRes(R.id.v_daolu, R.drawable.bg_busstop_vdaolu_end)  .setVisible(R.id.v_zhanwei, true)  .setVisible(R.id.v_daoli_zhanwei, false); } /** * 设置当前所在站点 */ private void setCurrentStation(BaseViewHolder helper, BusStopPlateStationInfo item) { mCurrentView = helper.getConvertView(); helper.setVisible(R.id.bus_stop_reach, true)  .setVisible(R.id.iv_bus_stop_current, false)  .setVisible(R.id.tv_bus_stop_current_num, false)  .setVisible(R.id.iv_current_point, true)  .setVisible(R.id.iv_admin_index, true)  // 显示占位符,用于显示一半的灰色  .setBackgroundRes(R.id.v_daoli_zhanwei, R.drawable.bg_busstop_vdaolu)  .setVisible(R.id.v_daoli_zhanwei, true);//  .setTextColor(R.id.tv_bus_station_name, Color.parseColor("#3D93FD")); Glide.with(mContext)  .load(R.drawable.bus_icon_fangxiang_current)  .crossFade()  .into((ImageView) helper.getView(R.id.iv_current_point)); List<AliveBusInfo> aliveBusInfos = item.getAliveBusInfos(); if (aliveBusInfos != null && aliveBusInfos.size() != 0) {  AliveBusInfo aliveBusInfo = aliveBusInfos.get(0);  if ("1".equals(aliveBusInfo.getStStatus()) && aliveBusInfo.getStName().equals(item.getStName())) {  helper.setVisible(R.id.iv_admin_index, false)   .setVisible(R.id.iv_bus_stop_current, true)   .setImageResource(R.id.iv_bus_stop_current, R.drawable.bus_stop_current);  } } else {  Glide.with(mContext)   .load(R.drawable.icon_admin_current_station)   .crossFade()   .into((ImageView) helper.getView(R.id.iv_admin_index)); } } /** * 设置公交所在站点 */ private void setBusStation(BaseViewHolder helper, BusStopPlateStationInfo item) { List<AliveBusInfo> aliveBusInfos = item.getAliveBusInfos(); if (aliveBusInfos != null && aliveBusInfos.size() != 0) {  AliveBusInfo aliveBusInfo = aliveBusInfos.get(0);  if ("0".equals(aliveBusInfo.getStStatus())) {  // 在车道上  helper.setVisible(R.id.bus_stop_not_to, true)   .setVisible(R.id.bus_stop_reach, false)   .setText(R.id.tv_stop_not_to_num, String.valueOf(aliveBusInfos.size()))   // 显示在过道中的车   .setVisible(R.id.iv_stop_not_to, aliveBusInfos.size() != 0)   // 是否显示数字   .setVisible(R.id.tv_stop_not_to_num, aliveBusInfos.size() > 1);  // 如果已经过站 显示灰色图标  if (aliveBusInfo.getStCount() < 0) {   GlideUtils.loadImageView(mContext, R.drawable.bus_stop_over_station_min, helper.getView(R.id.iv_stop_not_to));  } else {   GlideUtils.loadImageView(mContext, R.drawable.bus_stop_not_to, helper.getView(R.id.iv_stop_not_to));  }  } else if ("1".equals(aliveBusInfo.getStStatus())) {  // 到站  helper.setVisible(R.id.bus_stop_not_to, false)   .setVisible(R.id.bus_stop_reach, true)   .setVisible(R.id.iv_admin_index, true)   .setVisible(R.id.iv_bus_stop_current, false)   .setVisible(R.id.tv_bus_stop_current_num, aliveBusInfo.getStCount() > 1)   .setText(R.id.tv_bus_stop_current_num, String.valueOf(aliveBusInfos.size()));  // 如果已经过站 显示灰色图标  if (aliveBusInfo.getStCount() < 0) {   GlideUtils.loadImageView(mContext, R.drawable.bus_stop_over_station, helper.getView(R.id.iv_admin_index));  } else {   GlideUtils.loadImageView(mContext, R.drawable.bus_stop_not_to, helper.getView(R.id.iv_admin_index));  }  } } else {  // 隐藏公交车  helper.setVisible(R.id.bus_stop_not_to, false)   .setVisible(R.id.bus_stop_reach, false); } }

3.外部activity的点击事件:点击文字的时候将当前位置对象刷新到选择的位置,刷新recycleview

mBusStopPlateView.setOnBusStopPlateViewItemClick(new BusStopPlateView.onBusStopPlateViewEvent() {  @Override  public void onItemClick(BusStopPlateStationInfo station) {  stationId = station.getStId();  stationName = station.getStName();  exportStationInfo(mBusStopPlateView.getStationList());  aliveBusRefresh();  //当上车提醒保存的信息与当前候车站点信息不一致时恢复为上车提醒,  // 并在点击上车提醒是判断是否更新上车提醒的站点  BusRemind remind = SpKeyConfig.getOnRemind();  if (remind != null) {   if (remind.getStationId().equals(stationId) &&    remind.getLineId().equals(mLineId)) {   tvOnRemind.setText("取消提醒");   ivOnRemind.setImageResource(R.drawable.bus_icon_onremind_on);   } else {   tvOnRemind.setText("上车提醒");   ivOnRemind.setImageResource(R.drawable.bus_icon_onremind_off);   }  }  }  @Override  public void onCurrentViewPosition(int x, int y, boolean isVisibility) {  mIvPoint.setTranslationX(x - mIvPoint.getWidth() / 2 + 6);  mIvPoint.setVisibility(isVisibility ? View.VISIBLE : View.INVISIBLE);  } }

以上是“Android如何自定义View实现公交成轨迹图”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI