When I will start my master/detail activity(FolderListActivity) from another activity
startActivity(new Intent(getApplicationContext, FolderListActivity.class)))
or
startActivity(new Intent(getApplicationContext, FolderDetailActivity.class)))
it shows only one side in full screen. It works in separately project.
How to properly show my master/detail. As shown below:
Details
AndroidManifies.xml:
<activity
...
</activity>
<activity
...
</activity>
<activity
android:name="com.mypck.FolderListActivity"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.mypck.FolderDetailActivity"
android:label="@string/title_folder_detail"
android:parentActivityName=".FolderListActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".FolderListActivity" />
</activity>
I've seen this question, but there is no useful answer for me. Thanks in advance.