Android的月蚀:GridView的项目无法点击? [英] Android Eclipse: GridView Items not clickable?

查看:182
本文介绍了Android的月蚀:GridView的项目无法点击?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我实现,其中的产品的数组与产品形象的另一个阵列沿填充一个gridview填充来弥补产品网格视图列表SQLite数据库。然而,当我设置了OnItemClickListener,GridView的项目是不可点击,当我在我的设备上运行的应用程序。它只是能够通过产品和形象,但不能点击向下滚动。

I implemented a gridview where an array of "products" are populated along with another array of "product images" are populated to make up a grid view list of products in a Sqlite database. However, when I set up a OnItemClickListener, the gridview items are not clickable when I run the app on my device. It's simply able to scroll down through the products and images but not clickable.

的应用效果良好,图像获取与产品的详细信息一起显示但每个网格项无法点击。为什么会这样人?

下面是我的codeS:

Here's my codes:

MainActivity类别

gridView = (GridView)findViewById(R.id.grid);
            ProductGridInflator bA = new ProductGridInflator(this, R.layout.home ,dbProducts, dbImages);
            gridView.setAdapter(bA);

            gridView.setOnItemClickListener(new OnItemClickListener() {


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

                    Product currentProduct = new Product();

                    String product_name=null;

                    for(int i=0;i<dbProducts.size();i++)
                    {
                        product_name = dbProducts.get(i).NAME;
                    }

             //Sharing product details with all windows
                    SharedPreferences pref = getApplicationContext().getSharedPreferences("AppProduct", 0); // 0 - for private mode
                    Editor editor = pref.edit();
                    editor.putString("pname", product_name);
                    editor.commit();

                    Intent inn1=getIntent();
                    inn1=new Intent(HomeActivity.this, ProductSingle_Activity.class);
                    startActivity(inn1);

                }
            });

单个网格项目的XML

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

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginLeft="@dimen/feed_item_margin"
        android:layout_marginRight="@dimen/feed_item_margin"
        android:layout_marginTop="@dimen/feed_item_margin"
        android:background="@drawable/bg_parent_rounded_corner"
        android:orientation="vertical"
        android:paddingBottom="@dimen/feed_item_padding_top_bottom"
        android:paddingTop="@dimen/feed_item_padding_top_bottom" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:paddingLeft="@dimen/feed_item_padding_left_right"
            android:paddingRight="@dimen/feed_item_padding_left_right" >

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:paddingLeft="@dimen/feed_item_profile_info_padd" >

                <TextView
                    android:id="@+id/grid_text"
                    android:layout_width="285dp"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="15dp"
                    android:textSize="18sp" />

                <TextView
                    android:id="@+id/more_details"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:text="02:12pm"
                    android:textColor="@color/timestamp"
                    android:textSize="@dimen/feed_item_timestamp" />

                <TextView
                    android:id="@+id/grid_desc"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="15dp"
                    android:textColor="@color/timestamp"
                    android:textSize="15sp" />
            </LinearLayout>
        </LinearLayout>

        <HorizontalScrollView
            android:id="@+id/slider"
            android:layout_width="match_parent"
            android:layout_height="282dp"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:layout_weight="0.55" >

            <ImageView
                android:id="@+id/grid_image"
                android:layout_width="285dp"
                android:layout_height="285dp" />
        </HorizontalScrollView>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:paddingLeft="@dimen/feed_item_padding_left_right"
            android:paddingRight="@dimen/feed_item_padding_left_right" >

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:paddingLeft="@dimen/feed_item_profile_info_padd" >

                <TextView
                    android:id="@+id/interaction_text"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:text="Likes: 34 Comments: 45"
                    android:textColor="@color/timestamp"
                    android:textSize="@dimen/feed_item_timestamp"/>

            </LinearLayout>
        </LinearLayout>
    </LinearLayout>
</LinearLayout>

的GridView适配器

public class ProductGridInflator extends ArrayAdapter<Product>{
    private int[] Imageid; // this is the image id you are using... this is not initiatiliehs
    ArrayList<Product> dbProducts; // your person arraylist
    Context ctx; // the activity context
    int resource; // this will be your xml file
    ArrayList<Image> urlArr = new ArrayList<Image>();
    ArrayList<Image> dbImages = new ArrayList<Image>();

    public ProductGridInflator(Context context, int resource,ArrayList<Product> objects, ArrayList<Image> obj) {
        super(context, resource, objects);
        // TODO Auto-generated constructor stub
        this.dbProducts = objects;
        this.ctx = context;
        this.resource = resource;
        this.dbImages = obj;
    }

    @Override
    public int getCount() {
        // TODO Auto-generated method stub
        if(dbProducts.size() == 0){
            return 0;
        }else{
            return dbProducts.size();
        }
    }


    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {
        // TODO Auto-generated method stub
        View child = convertView;
        RecordHolder holder;
        LayoutInflater inflater = ((Activity) ctx).getLayoutInflater(); // inflating your xml layout


        if (child == null) {            
            child = inflater.inflate(R.layout.grid_single, parent, false);
            holder = new RecordHolder();
            holder.productName = (TextView) child.findViewById(R.id.grid_text); // fname is the reference to a textview
            //holder.productImage = (TextView) child.findViewById(R.id.txtLname); // in your xml layout file 
            //holder.bio =(TextView) child.findViewById(R.id.txtBio); // you are inflating.etc
            holder.image = (ImageView) child.findViewById(R.id.grid_image);
            holder.productDesc = (TextView) child.findViewById(R.id.grid_desc);
            holder.moreDetails = (TextView) child.findViewById(R.id.more_details);
            child.setTag(holder);
        }else{
            holder = (RecordHolder) child.getTag();
        }

        final Product user = dbProducts.get(position); // you can remove the final modifieer.

        holder.productName.setText(user.getNAME());      
        //holder.lname.setText(user.getLName());
        //holder.bio.setText(user.getBiography());


        HorizontalScrollView scroller = (HorizontalScrollView) child.findViewById(R.id.slider);
        for(int i=0;i<dbImages.size();i++)
        {
            if(dbImages.get(i).PID.equals(user.PID))
            {
                //Picasso.with(ctx).load(dbImages.get(i).URL).into(holder.image);
                Picasso.with(ctx)
                  .load(dbImages.get(i).URL)
                  .placeholder(R.drawable.loading_placeholder)
                  .error(R.drawable.error_placeholder)
                  .into(holder.image);
            }
            else
                continue;
        }

        holder.productDesc.setText(user.DESC);
        holder.moreDetails.setText(user.CATEGORY + " - " + "Rating: " + user.RATING + " - " + "Sizes: " + user.SIZE);

        // the string as url and set it to your imageview..
        return child;
    }

    static class RecordHolder {
        TextView productName;
        ImageView image;   
        TextView productDesc;
        TextView moreDetails;
    }

    @Override
    public void notifyDataSetChanged() { // you can remove this..
        // TODO Auto-generated method stub      
        if(getCount() == 0){
            //show layout or something that notifies that no list is in..
        }else{
            // this is to make sure that you can call notifyDataSetChanged in any place and any thread
            new Handler(getContext().getMainLooper()).post(new Runnable() {

                @Override
                public void run() {
                    // TODO Auto-generated method stub
                    ProductGridInflator.super.notifyDataSetChanged();
                }
            });
        }
    }
}

主要的GridView XML(窗口,在GridView的位置):

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="activity.classes.HomeActivity" >

    <RelativeLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8pt"
            android:gravity="center_horizontal"
            android:text="Jezza"
            android:textSize="25dip" />

        <TextView
            android:id="@+id/hub_error"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:padding="2dip"
            android:textColor="#e30000"
            android:textStyle="bold" />

        <GridView
            android:id="@+id/grid"
            android:layout_width="fill_parent"
            android:layout_height="395dp"
            android:layout_alignParentBottom="true"
            android:columnWidth="100dp"
            android:gravity="center"
            android:numColumns="1"
            android:stretchMode="columnWidth"
            android:verticalSpacing="10dp" />
    </RelativeLayout>

    <ListView
        android:id="@+id/drawerList"
        android:background="#EEEEEE"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@null"
        android:dividerHeight="0dp" />

</android.support.v4.widget.DrawerLayout>

感谢您!

推荐答案

尝试添加内容到另一个布局和膨胀的布局,像这​​样的网格视图。

Try adding contents to another layout and inflate that layout to grid view like this.

public View getView(int position, View convertView, ViewGroup parent) {

                     View grid = convertView;
                     if (convertView == null) {

                     grid = inflater.inflate(R.layout.gridview_layout, parent, false);
                     } else {
                     grid = (View) convertView;
          }

        final Button bt = (Button) grid.findViewById(R.id.ready);
        final TextView tno=(TextView)grid.findViewById(R.id.txt);
        final TextView name=(TextView)grid.findViewById(R.id.txt3);
        final TextView qty=(TextView)grid.findViewById(R.id.txt4);
        final TextView instr=(TextView)grid.findViewById(R.id.txt5); 

        dish = data.get(position);

        tno.setText(dish.get(KEY_TNO));
        name.setText("NAME: "+dish.get(KEY_NAME));
        qty.setText("QTY:"+dish.get(KEY_QUANTITY));
        instr.setText("INSTRN: "+dish.get(KEY_INSTRUCTION));


        bt.setOnClickListener(new View.OnClickListener() {  

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub

                String tn = tno.getText().toString();
                System.out.println("TABLE NO:"+tn);
                Toast.makeText(getApplicationContext(), "Successssss"+tn,    Toast.LENGTH_SHORT).show();


            }
        });

        return grid;
    }

这篇关于Android的月蚀:GridView的项目无法点击?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆