I'm trying to make a button open options for other social networking apps that they may possibly have on their phone but I didn't include on my social networking page in my App, and this is what I have so far
options.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v){
Intent othersIntent = new Intent(android.content.Intent.ACTION_VIEW);
startActivity(Intent.createChooser(othersIntent, "Choose"));
}
});
Now what this currently does is bring up a scrollable screen full of different apps, but they include things like network options, music hub, com.sec.android.app.kieswifi ... and just things that I don't think people will be needing.
So my question: is there anyway to specify what type of apps show up in this scrollable screen full of apps?