/ / Android, ¿Cómo filtrar el intercambio social por tener solo Facebook y Twitter? - Android, Facebook, Twitter, redes sociales

Android, ¿Cómo filtrar el intercambio social para tener solo Facebook y Twitter? - Android, Facebook, Twitter, redes sociales.

En mi proyecto, necesito compartir información en Just Facebook y Twitter. Actualmente, cuando utiliza los siguientes códigos, Android ofrece una lista de todas las redes sociales que tiene en su teléfono móvil.

public void share(String subject,String text) {
final Intent intent = new Intent(Intent.ACTION_SEND);

intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
intent.putExtra(Intent.EXTRA_TEXT, text);
startActivity(Intent.createChooser(intent, "Share with:"));
}

El requisito es solo mostrar Facebook y Twitter en esta lista. ¿Es posible filtrar esta lista para tener estos dos?

enter image description here

Respuestas

8 para la respuesta № 1
    Button btnshare=(Button)rootView.findViewById(R.id.btnshare);
btnshare.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Share(getShareApplication(),"Hello Text Share");
}
});

private List<String> getShareApplication(){
List<String> mList=new ArrayList<String>();
mList.add("com.facebook.katana");
mList.add("com.twitter.android");
mList.add("com.google.android.gm");
return mList;

}
private void Share(List<String> PackageName,String Text) {
try
{
List<Intent> targetedShareIntents = new ArrayList<Intent>();
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("text/plain");
List<ResolveInfo> resInfo = getActivity().getPackageManager().queryIntentActivities(share, 0);
if (!resInfo.isEmpty()){
for (ResolveInfo info : resInfo) {
Intent targetedShare = new Intent(android.content.Intent.ACTION_SEND);
targetedShare.setType("text/plain"); // put here your mime type
if (PackageName.contains(info.activityInfo.packageName.toLowerCase())) {
targetedShare.putExtra(Intent.EXTRA_TEXT,Text);
targetedShare.setPackage(info.activityInfo.packageName.toLowerCase());
targetedShareIntents.add(targetedShare);
}
}
Intent chooserIntent = Intent.createChooser(targetedShareIntents.remove(0), "Share");
chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, targetedShareIntents.toArray(new Parcelable[]{}));
startActivity(chooserIntent);
}
}
catch(Exception e){
e.printStackTrace();
}
}

3 para la respuesta № 2

Puede consultar las actividades que coinciden conIntente y luego filtre los nombres de paquete de las aplicaciones de Twitter y Facebook, ya que el nombre del paquete de una aplicación nunca cambia. Luego ponga estos resultados en un diálogo personalizado.

Usando algo como esto, podría filtrar los resultados por nombre de paquete:

final PackageManager pm = context.getPackageManager();
final Intent intent = new Intent(Intent.ACTION_SEND);
List<ResolveInfo> riList = pm.queryIntentActivities(intent, 0);
for (ResolveInfo ri : riList) {
ActivityInfo ai = ri.activityInfo;
String pkg = ai.packageName;
if (pkg.equals("com.facebook.katana") || pkg.equals("com.twitter.android")) {

// Add to the list of accepted activities.

// There"s a lot of info available in the
// ResolveInfo and ActivityInfo objects: the name, the icon, etc.

// You could get a component name like this:
ComponentName cmp = new ComponentName(ai.packageName, ai.name);
}
}

0 para la respuesta № 3

No sé si eso es lo que quieres decir, pero puedes usar el menú para compartir integrado de Android ...

Puedes compartir una URL para Facebook, Twitter, Gmail y más (siempre y cuando las aplicaciones estén instaladas en su dispositivo) usando Intents:

Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_SUBJECT, "Sharing URL");
i.putExtra(Intent.EXTRA_TEXT, "http://www.url.com");
startActivity(Intent.createChooser(i, "Share URL"));

No olvide insertar esto en el Manifiesto.xml:

<activity android:name="ShareLink">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<meta-data/>
</activity>

¡Espero que esto ayude!