Files
palemoon27/mobile/android/search/manifests/SearchAndroidManifest_activities.xml.in
T

49 lines
1.8 KiB
Plaintext

<activity
android:name="org.mozilla.search.SearchActivity"
android:launchMode="singleTop"
android:icon="@drawable/search_launcher"
android:label="@string/search_app_name"
android:configChanges="orientation|screenSize"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.ASSIST"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<!-- Basic launcher widget. -->
<receiver android:name="org.mozilla.search.SearchWidget"
android:label="@string/search_widget_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<intent-filter>
<action android:name="org.mozilla.widget.LAUNCH_BROWSER"/>
</intent-filter>
<intent-filter>
<action android:name="org.mozilla.widget.LAUNCH_SEARCH"/>
</intent-filter>
<intent-filter>
<action android:name="org.mozilla.widget.LAUNCH_NEW_TAB"/>
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/search_widget_info" />
</receiver>
<activity
android:name="org.mozilla.search.SearchPreferenceActivity"
android:logo="@drawable/search_launcher"
android:label="@string/search_pref_title"
android:parentActivityName="org.mozilla.search.SearchActivity"
android:theme="@style/SettingsTheme" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.mozilla.search.SearchActivity"/>
</activity>