2

我使用 定位操作栏中的项目ShowcaseView,但我不能定位 a 的元素ListView!我试过了,但没有用:

ShowcaseView sv = new ShowcaseView.Builder(this,true)
    .setTarget(new ViewTarget(lv.getChildAt(1).findViewById(R.id.heart)))
    // Here is where you supply the id of the action bar item you
    // want to display
    .setContentTitle("Heart")
    .setContentText("Check the venues of your city")
    .hideOnTouchOutside()
    .build();
4

1 回答 1

1

很简单。将元素放入您的ViewHolder然后放置代码以显示ShowCaseView您的bindView.

不要忘记为列表中的每个元素设置不同的 ID。

所以你可以尝试这样的事情。

public class ViewHolder extends RecyclerView.ViewHolder {

  private TextView button;

  public ViewHolder(final View itemView) {
    super(itemView);
    button = (Button) itemView.findViewById(R.id.list_button);

    button.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        new MaterialShowcaseView.Builder(getActivity())
          .setTarget(verifyButton)
          .setDismissText("GOT IT")
          .setContentText("Your text goes here")
          .setDelay(100) // optional but starting animations immediately in onCreate can make them choppy
          .singleUse(id + " define an unique id for each item of the list") // provide a unique ID used to ensure it is only shown once
          .show();
        }
      });
    }
  }
}

要获取更多信息,您可以在此处查看库

于 2016-04-06T07:08:19.320 回答