ShowcaseView(库)如何与 GridView 或 ListView 一起使用?
问问题
2942 次
3 回答
8
对于那些有同样问题的人,我刚刚找到了一个很好的解决方案:
showcaseView = new ShowcaseView.Builder(getActivity(),true)
.setTarget(new ViewTarget(myListView.getChildAt(0).findViewById(R.id.itemIcon)))
.setStyle(R.style.CustomShowcaseTheme)
.setContentTitle("My test")
.setContentText("I love fries")
.setOnClickListener(new View.OnClickListener() {
...
}
好吧,你得到你想要的元素,getChildAt(0)
然后做一个findViewById
!
不需要创建任何其他视图!
于 2014-11-19T15:26:47.483 回答
2
你可以尝试这样的事情:
在您的布局中,您可以在要显示的元素上设置一个不可见的按钮
<Button
android:id="@+id/showcase_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="140dp"
android:visibility="invisible"
android:text="Showcase" />
然后简单地将该元素设置为目标
ViewTarget target = new ViewTarget(R.id.showcase_button, this);
new ShowcaseView.Builder(this)
.setTarget(target)
.setContentTitle("Choose smthn")
.setContentText("Some other information can be here.")
.hideOnTouchOutside()
.build();
于 2014-06-15T05:06:52.287 回答
0
在片段中使用时,尤其是对于 ListViews,您应该像这样使用它:
fragmentView.post(new Runnable() {
@Override
public void run() {
final View listViewIdentity = infoListView.getChildAt(0);
new GuideView.Builder(getContext())
.setTitle("Deneme")
.setContentText("Deneme 1 2")
.setTargetView(listViewIdentity)
.setDismissType(GuideView.DismissType.outside)
.build()
.show();
}
});
因为您必须在 onCreate 方法中编写此块,并且在创建 fragmentView 时,ListView 可能还没有准备好。
此代码块获取特定单元格并在其上使用展示视图。
此处的 GuideView 来自您可以在以下位置找到的库:android-arsenal库。
我希望这会有所帮助,因为它对我帮助很大。
于 2018-10-23T11:09:11.780 回答