In my manifest.xml, i'm used android:parentActivityName to set up parent Activity.
Here my code:
<activity
            android:name=".B"
            android:label="@string/title_activity_A"
            android:parentActivityName=".A" >
        </activity>
So, how to put data from B to A when click back button in action bar?? Because my A activity is child activity of another activity(C activity) and A activity using data from this activity(C activity)... Somebody can help me please? Thanks and sorry because my english.
 
    