Android StellarMap 星星
stellar : 英[ˈstelə(r)] adj. 星的; 星球的;
【使用步骤】
// 1.创建stellarMap
StellarMap stellarMap = new StellarMap(getContext());
// 2.设置数据适配器
stellarMap.setAdapter(new StellarMap.Adapter() {
@Override
public int getCount() {// 返回星星的数量,这里的mMDataList即是所有标签组成的集合;
return mMDataList.size();
}
@Override
protected View getView(int index, View convertView) {// 每个星星的视图
TextView textView = new TextView(getContext());
textView.setText(mMDataList.get(index));
return textView;
}
});
// 把stellarMap添加到你想要展示的地方即可。
如,设置给activity的view;