首页 > 代码库 > 定义默认的android的返回路径
定义默认的android的返回路径
使用 “android.support.PARENT_ACTIVITY”属性定义默认的返回。
···
<activity android:label="@string/app_name" android:name=".activity.HomeActivity" android:launchMode="singleTask" android:screenOrientation="portrait" android:configChanges="keyboardHidden|orientation" /> <activity android:label="@string/search_title" android:name=".activity.SearchActivity" android:launchMode="singleTop" android:screenOrientation="portrait" android:configChanges="keyboardHidden|orientation" android:parentActivityName=".activity.HomeActivity"> <intent-filter> <action android:name="android.intent.action.SEARCH" /> </intent-filter> <meta-data android:name="android.app.searchable" android:resource="@xml/searchable" /> <meta-data android:name="android.support.PARENT_ACTIVITY" android:value=http://www.mamicode.com/".activity.HomeActivity" />>···
定义默认的android的返回路径
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。