mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
Made our search activity actually exist
This commit is contained in:
parent
09ecd2bc9a
commit
ddd6db3a7c
@ -28,7 +28,7 @@
|
||||
<application android:icon="@drawable/icon" android:label="@string/app_name" android:name="K9"
|
||||
>
|
||||
<meta-data android:name="android.app.default_searchable"
|
||||
android:value=".Search" />
|
||||
android:value=".activity.Search" />
|
||||
|
||||
<activity
|
||||
android:name="com.fsck.k9.activity.Accounts"
|
||||
@ -187,7 +187,7 @@
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<!-- Search Activity - searchable -->
|
||||
<activity android:name="Search"
|
||||
<activity android:name="com.fsck.k9.activity.Search"
|
||||
android:label="@string/search_action"
|
||||
android:launchMode="singleTop">
|
||||
<intent-filter>
|
||||
|
8
src/com/fsck/k9/activity/Search.java
Normal file
8
src/com/fsck/k9/activity/Search.java
Normal file
@ -0,0 +1,8 @@
|
||||
package com.fsck.k9.activity;
|
||||
import com.fsck.k9.activity.MessageList;
|
||||
|
||||
|
||||
public class Search extends MessageList
|
||||
{
|
||||
|
||||
};
|
Loading…
Reference in New Issue
Block a user