0

我正在使用 listview ...我尝试在 itemclicked 列表时打开图像并且在另一个活动中进行 diaply ...但它不工作...如果你知道的朋友请帮助我...谢谢....

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


// Find the ListView resource. 
mainListView = (ListView) findViewById( R.id.mainListView );
mainListView.setOnItemClickListener(new OnItemClickListener() {

    public void onItemClick(AdapterView<?> mainListView, View view, int pos,
            long id) {

        //Object obj = getFilesDir().getPath();
        //String value= obj.toString();

        Intent intent= new         Intent(SimpleListViewActivity.this,Nextclass.class);
        final String root = Environment.getExternalStorageDirectory().getAbsolutePath();
        intent.setData(Uri.parse(root + "/mnt/sdcard/dcim/100andro/koala_copy.jpg"));
        startActivity(intent);
    }

    private ArrayAdapter<String> getListAdapter() {
        // TODO Auto-generated method stub
        return null; 
    }

我的 main.xml 是

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ListView android:layout_width="fill_parent" 
  android:layout_height="fill_parent" 
  android:id="@+id/mainListView">
</ListView>

</LinearLayout>
4

1 回答 1

0

我们还需要查看NextClass's 代码,因为这就是接收您正在启动的 Intent 的内容。它应该是 的子类Activity。然后在它的onCreateoronResume你调用getIntent()中,检查意图是否有你需要的额外/数据,并将图像加载到一个ImageView或其他东西中。

于 2012-10-10T22:31:53.167 回答