1

我是android开发的新手。

我有一个包含一堆片段的活动,每个片段显示不同的文本。我在运行时从 strings.xml 设置文本(即 tv.setText ...)

这是我的 strings.xml 的示例:

<string name="string1">the content I want searched, text1</string>
<string name="string2">the content I want searched, text2</string>
<string name="string3">the content I want searched, text3</string>

这是我的问题:
我想在应用程序中添加搜索功能,我希望能够在字符串中搜索单词并将整个字符串作为结果返回给用户。因此,例如,如果用户搜索 text2,它将返回整个字符串。

我已经在这里阅读了关于 android-developers 的搜索指南:http: //developer.android.com/guide/topics/search/index.html

我还找到了一堆教程,但它们似乎都处理存储在 SQLite 数据库中的数据。

这是我的更多代码:
searchable.xml:

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
    android:label="@string/app_name"
    android:hint="Search" >
</searchable>

可搜索活动:

public class SearchableActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.search);

        handleIntent(getIntent());
    }


    @Override
    protected void onNewIntent(Intent intent) {
        setIntent(intent);
        handleIntent(intent);
    }



    private void handleIntent(Intent intent) {
        if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
          String query = intent.getStringExtra(SearchManager.QUERY);
          doMySearch(query);
        }
    }

    private void doMySearch(String query) {
    }

}

任何帮助,将不胜感激

PS这是最好的方法吗?我有很多字符串(> 1000)我读过有关使用数据库的信息,但我不知道如何将所有数据转换为数据库,也不知道如何从数据库设置文本......等等

4

2 回答 2

2

我认为您需要使用密钥在 strings.xml 文件中搜索,如果我理解您,这里就是答案。

字符串.xml

<string name="string1">the content I want searched, text1</string>

在strings.xml中搜索的方法

private String SearchForString(String message){
// get the resource id if matched any key in strings 
// message Passed string you want search for
// "string" type of what you looking for
// package name

try {
    int resId = getResources().getIdentifier(message , "string" , getPackageName());
    String stringReturned =  getResources().getString(resId);
return stringReturned;
  } catch(Exception e){
  return null;
  }
  }

现在调用方法

SearchForString("string1");

它应该返回: 我要搜索的内容,text1

于 2016-08-01T12:26:49.160 回答
1

而不是使用字符串使用字符串数组。在资源中创建一个文件并声明如下

<?xml version="1.0" encoding="utf-8"?><resources>
<string-array name="names">
    <item>the content I want searched, text1</item>
    <item>the content I want searched, text2</item>
    <item>the content I want searched, text3</item>
</string-array>  

现在在代码中执行以下操作来搜索字符串

String[] names = getResources().getStringArray(R.array.names);
for (String s : names) {
    int i = s.indexOf(searchKeyword);
    if (i >= 0) {
        // found a match
    }
}
于 2013-03-10T12:12:37.740 回答