我有一个原生的Android应用程序,它从opencart网站获取数据,有些类别/项目我不想在应用程序中显示。
我认为这是处理类别/项目可见性的类
public class CategoryListActivity extends BaseActivity
{
List<Category> categoryData = new ArrayList<Category>();
ListView categoryList = null;
TextView activityTitle = null;
CategoryListAdapter categoryListAdapter = null;
int categoryId = -1;
String categoryTitle = "";
SharedPreferences prefs = null;
ProgressDialog loadingDialog;
String currentParentHierarchy = "";
有人可以帮忙吗?
谢谢