I did a back button by writing in the manifest file(like there http://developer.android.com/training/implementing-navigation/ancestral.html)
<activity android:name=".Activity2"
        android:parentActivityName=".MainActivity">
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value=".MainActivity"
            />
    </activity>
How do I transfer data from Activity 2 when returning to MainActivity?Or there is a better way to make back button in action bar?
 
     
     
     
    