9
我正在使用https://github.com/amlcurran/ShowcaseView庫用於Showcaseview
如何製作矩形視圖而不是圓形?
以及如何將它用於其中一個listview項目? 感謝如何在showcaseview中爲列表視圖製作矩形視圖
1
我正在使用https://github.com/amlcurran/ShowcaseView庫用於Showcaseview
如何製作矩形視圖而不是圓形?
以及如何將它用於其中一個listview項目? 感謝如何在showcaseview中爲列表視圖製作矩形視圖
1
參考CustomShowcaseActivity
在示例應用程序。它創建了一個矩形展櫃。它定義了一個CustomShowcaseView
與設置width
和資源文件dimens.xml陳列櫃矩形的height
構造:
width = resources.getDimension(R.dimen.custom_showcase_width);
height = resources.getDimension(R.dimen.custom_showcase_height);
的CustomShowcaseActivity
關聯到在Builder
的ShowcaseView。這也是展示目標設定的地方。
CustomShowcaseView
implements ShowcaseDrawer
因此您使用setShowcaseDrawer()
。這不是一個抽屜,而是一個「抽屜」。
下面顯示了這一點,並針對一個listview
爲你想要的東西:
ViewTarget target = new ViewTarget(R.id.listView, this);
sv = new ShowcaseView.Builder(this)
.setTarget(target)
.setShowcaseDrawer(new CustomShowcaseActivity.CustomShowcaseView(getResources()))
.build();