Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the following code to share some text via gmail,facebook,twitter, etc:

  Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "The status update text");
startActivity(Intent.createChooser(intent, "Dialog title text"));

The thing is that I want to check if the selected intent is Facebook, and if it is, I will do some other coding than prompt the share intent as usual.

Is it possible?

share|improve this question
As far as i know, this isn't possible. You can't receive anything of the Dialog with Facebook, twitter ... One idea is to start a CountDownTimer when "share" is clicked, with for example 10 seconds and then check which Activity is on top of yours with ActivityManager. – wutk3ks Nov 30 '12 at 18:24
you can do one this using PackageManager you can check Current top Activity in Activity Stack after startActivity(Intent.createChooser(intent, "Dialog title text")); – ρяσѕρєя K Nov 30 '12 at 18:24
@imrankhan How can I do that? – idish Nov 30 '12 at 18:32
1  
@imrankhan yep!! working great, thank you very much!! If you like you can post an answer so I could upvote and tick you answer. – idish Nov 30 '12 at 20:17
1  
@idish : i think you can post better answer form me. so please post it as answer for others help who is looking for same issue.Thanks so much – ρяσѕρєя K Nov 30 '12 at 20:21
show 12 more comments

1 Answer

up vote 1 down vote accepted

I've just found the following link : http://clickclickclack.wordpress.com/2012/01/03/intercepting-androids-action_send-intents/

It describes how to do this kind of task, all you need to do is create a row layout, and you're done. I tried it and it works great!

EDIT: There's a mistake in the article in the show function, it should be the following:

final ShareIntentListAdapter adapter = new ShareIntentListAdapter((Activity)context, R.layout.basiclistview, activities.toArray());

Thanks to @imram khan for mentioning that.

If anybody wants to use my xml row layout:

  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >


   <TextView android:id="@+id/text1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:textSize="20sp"
    android:gravity="center"
    android:layout_alignParentRight="true"
    android:layout_marginRight="50dp"
/>


    <ImageView android:id="@+id/logo2"
    android:layout_width="70dp"
    android:layout_height="70dp"
    android:padding="10dp"
    android:src="@drawable/number1"
    android:layout_gravity="center_vertical"
    android:layout_alignParentRight="true"/>

</RelativeLayout>
share|improve this answer
+1vote you can also accept it as answer yourself and xml layout or final ShareIntentListAdapter adapter = new ShareIntentListAdapter((Activity)context, R.layout.basiclistview, activities.toArray()); as change in current code – ρяσѕρєя K Nov 30 '12 at 20:43
@imrankhan ok edited, i just tried to accept my answer, but I can only in just 2 days. anyways, thank you once again. – idish Nov 30 '12 at 20:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.