0

I am trying to show installed apps in listview, but I don't want to show current app, meanz my app name is APP1 so i don't want to show this app in listview, how can i remove it?

user3555472
  • 836
  • 3
  • 11
  • 38

1 Answers1

2

If you are using a BaseAdapter just check the app1 from the applist inside getView() @Override method and skip that element before setting the value to the TextView.

Satish Bellapu
  • 740
  • 1
  • 5
  • 15