怎么在Android中通过自定义View实现公交成轨迹图

发布时间:2021-05-24 18:20:04 作者:Leah
来源:亿速云 阅读:279

本篇文章为大家展示了怎么在Android中通过自定义View实现公交成轨迹图,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

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是什么

Android是一种基于Linux内核的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由美国Google公司和开放手机联盟领导及开发。

上述内容就是怎么在Android中通过自定义View实现公交成轨迹图,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。

推荐阅读:
  1. 如何实现pyecharts动态轨迹图
  2. 怎么在Android中自定义view实现车载可调整轨迹线

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

android view

上一篇:如何在Android中利用AlarmManager定时循环后台任务

下一篇:怎么在Android中利用贝塞尔曲线实现手指轨迹

相关阅读

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

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