我正在关注http://developer.android.com/guide/topics/search/search-dialog.html为我的应用创建可搜索的活动。我正在使用sqlite for db。我正在寻找sqlite的一个例子“doMySearch(查询)”(请参阅链接)。
public class SearchableActivity extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.search);
// Get the intent, verify the action and get the query
Intent intent = getIntent();
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
String query = intent.getStringExtra(SearchManager.QUERY);
doMySearch(query);
}
}
}
答案 0 :(得分:0)
如果您想拍摄它们,我认为这些是好主意:P
http://www.vogella.de/articles/AndroidSQLite/article.html
http://www.screaming-penguin.com/node/7742
希望这些能帮到你......