单击项目时,自定义ListView不会在第二个活动中显示图像

时间:2015-02-25 12:06:45

标签: android listview android-intent

我已将自定义ListView与列表中的图像和文本组合在一起。 然后我创建了第二个活动,以便在列表中单击时以更大的格式显示图像。

虽然我把所有正确的代码放在一起(没有错误等), Intent没有显示较大的图像(图像都在同一个可绘制的文件夹中 - 只有在ImageViews中设置的大小才能提供不同的输出。 应用程序在ListView中显示图像和文本,但single_list_item_view屏幕中没有显示图像(当进入时,它会进入第二个屏幕确定 单击sinle行。)

这是我的代码:

MainActivity.java

import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.Toast;
import android.app.Activity;
import android.content.Intent;

public class MainActivity extends Activity {
    ListView list;
    String[] web = {
        "Google Plus",
            "Twitter",
            "Windows",
            "Bing",
            "Itunes",
            "Wordpress",
            "Drupal"
    } ;
    Integer[] imageId = {
            R.drawable.image1,
            R.drawable.image2,
            R.drawable.image3,
            R.drawable.image4,
            R.drawable.image5,
            R.drawable.image6,
            R.drawable.image7


    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        CustomList adapter = new
                CustomList(MainActivity.this, web, imageId);
        list=(ListView)findViewById(R.id.list);
                list.setAdapter(adapter);
                list.setOnItemClickListener(new AdapterView.OnItemClickListener() {

                    @Override
                    public void onItemClick(AdapterView<?> parent, View view,
                                            int position, long id) {

                        ImageView imgview = (ImageView) view.findViewById(R.id.img);
                        int images = imgview.getId();
                        //Toast.makeText(MainActivity.this, "You Clicked at " +web[+ position], Toast.LENGTH_SHORT).show();
                        Intent i = new Intent(getApplicationContext(), SingleListItem.class);
                        i.putExtra("zurag", images);
                        startActivity(i);
                    }
                });




    }

}

CustomList.java:

import android.app.Activity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;

public class CustomList extends ArrayAdapter<String>{

private final Activity context;
private final String[] web;
private final Integer[] imageId;
public CustomList(Activity context,
String[] web, Integer[] imageId) {
super(context, R.layout.list_single, web);
this.context = context;
this.web = web;
this.imageId = imageId;

}
@Override
public View getView(int position, View view, ViewGroup parent) {
LayoutInflater inflater = context.getLayoutInflater();
View rowView= inflater.inflate(R.layout.list_single, null, true);
TextView txtTitle = (TextView) rowView.findViewById(R.id.txt);

ImageView imageView = (ImageView) rowView.findViewById(R.id.img);
txtTitle.setText(web[position]);

imageView.setImageResource(imageId[position]);
return rowView;
}
}

SingleListItem.java

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.ImageView;

public class SingleListItem extends Activity{
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        this.setContentView(R.layout.single_list_item_view);

        ImageView images = (ImageView) findViewById(R.id.imageView1);
        Intent i = getIntent();
        int pic =i.getIntExtra("zurag", 0);
        images.setImageResource(pic);

    }
}

list_single.xml

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <TableRow>
        <ImageView
            android:id="@+id/img"
            android:layout_width="70dp"
            android:layout_height="70dp"/>

        <TextView
            android:id="@+id/txt"
            android:layout_width="wrap_content"
            android:textSize="25dip"
            android:layout_height="70dp" />

</TableRow>
</TableLayout>

single_list_item_view.xml:

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

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="88dp"
        android:text="TextView"
        android:textSize="30dp" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="480dp"
        android:layout_height="344dp"
        android:layout_below="@+id/textView1"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="145dp" />

</RelativeLayout>

activity_main.xml中:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <ListView
       android:id="@+id/list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

    </ListView>

</RelativeLayout>

这是缺少SingleListItem类:

5 个答案:

答案 0 :(得分:1)

  

自定义ListView在项目时不显示第二个活动中的图像   点击

imgview.getId();返回id的{​​{1}}而不是用作ImageView ImageView的图片可绘制ID。

使用srcgetAdapter().getItem获取点击的行Drawable的ID:

imageId[position]

现在在下一个活动

中发送带有Intent的 int images = parent.getAdapter().getItem(position);

编辑:

images课程中添加getItem方法:

CustomList

答案 1 :(得分:0)

在你的意图Extra中传递下面的id。 imageId [position] ,它应该有用。

基本上就是这一行

i.putExtra("zurag", images);

将成为

i.putExtra("zurag", imageId[position]);

您正在传递图像视图的资源ID,而您应该已经传递了可绘制/图像文件的资源ID。

答案 2 :(得分:0)

试试这个......

  @Override
                public void onItemClick(AdapterView<?> parent, View view,
                                        int position, long id) {

                    ImageView imgview = (ImageView) view.findViewById(R.id.img);
                    int images = position;
                    //Toast.makeText(MainActivity.this, "You Clicked at " +web[+ position], Toast.LENGTH_SHORT).show();
                    Intent i = new Intent(getApplicationContext(), SingleListItem.class);
                    i.putExtra("zurag", images);
                    startActivity(i);
                }

答案 3 :(得分:0)

imgview.getId()会为您提供图片视图ID,而不是您指向的图片。

试试这个,

在你的CustomList的getview中添加这样一行,

imageView.setTag(图像标识[位置])。

在List Click Listener中获取这样的ID,

imgview.getTag()并将其提供给Intent对象

i.putExtra(&#34; zurag&#34;,imgview.getTag());

答案 4 :(得分:0)

您可以使用以下MainActivity代码。

@Override
            public void onItemClick(AdapterView<?> parent, View view,
                                    int position, long id) {

                ImageView imgview = (ImageView) view.findViewById(R.id.img);
                int images = position;
                Intent i = new Intent(getApplicationContext(), SingleListItem.class);
                i.putExtra("zurag", position);
                startActivity(i);
            }

现在,您可以使用以下代码在SingleListItem Activity中获取图像。

   public class SingleListItem extends Activity{

    Integer[] imageId = {
        R.drawable.image1,
        R.drawable.image2,
        R.drawable.image3,
        R.drawable.image4,
        R.drawable.image5,
        R.drawable.image6,
        R.drawable.image7
   @Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    this.setContentView(R.layout.single_list_item_view);

    ImageView images = (ImageView) findViewById(R.id.imageView1);
    Intent i = getIntent();
    int pic =i.getIntExtra("zurag", 0);
    images.setImageResource(imageId[pic]);

}

}