我正在为我的应用程序创建搜索,我需要做的最后一件事是在用户单击搜索建议时“提取”数据。我已经设置Intent.ACTION_VIEW
并获取了数据intent.getData()
;在我的可搜索活动中。但是我现在应该怎么做才能查看数据中“打包”的 TextViews 和 ImageView 等对象呢?我没有这方面的经验,请问您能给我一些建议吗?
非常感谢
我的代码示例:
if (Intent.ACTION_VIEW.equals(intent.getAction())) {
setContentView(R.layout.activity_more);
intent.getData();
final ProgressBar progress = (ProgressBar) findViewById(R.id.more_progress);
progress.setVisibility(View.VISIBLE);
TextView about = (TextView)findViewById(R.id.more_about);
TextView animal = (TextView)findViewById(R.id.more_animal);
final ImageView imgUrl = (ImageView)findViewById(R.id.more_imgUrl);
//now do i need to set Text etc., but how?
}