首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >每个子项目超过3个项目GridView Android

每个子项目超过3个项目GridView Android
EN

Stack Overflow用户
提问于 2016-09-26 11:37:51
回答 1查看 258关注 0票数 0

我想在网格视图中显示来自内容提供商的数据超过3个子项目或行

下面是我的java源代码

代码语言:javascript
复制
@Override
public void onLoadFinished(Loader<Cursor> arg0, Cursor cursor) {

    players.clear();
    // First Check if cursor is not null
    if(cursor != null ) {


        StringBuilder result = new StringBuilder();

        // Now loop to all items and append it to string builder
             while (cursor.moveToNext()) {

                String id = cursor.getString(cursor.getColumnIndex("ID"));
                String name = cursor.getString(cursor.getColumnIndex("ITEM_NAME"));
                String qty = cursor.getString(cursor.getColumnIndex("QUANTITY"));
                String inst = cursor.getString(cursor.getColumnIndex("INSTRUCTION"));
                String pid = cursor.getString(cursor.getColumnIndex("POS_ID"));

                players.add("Items :" + name + "\n" + "Qty :" + qty + "\n" +
                             "Details :" + inst + "\n" + " Pos ID :" + pid);


                gv.setAdapter(adapter);
                resultView.setText(result);
            }

    } else {
        // If cursor is null then display toast amd set empty data.
        resultView.setText("Empty data");
        Toast.makeText(MainActivity.this, "May be there is no app  corresponding to your provider or there is null data.",
                        Toast.LENGTH_LONG).show();
    }

}

Gv.setAdapter(适配器)是我显示来自内容提供者的数据的地方

下面是我的xml源代码

代码语言:javascript
复制
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
android:fillViewport="true"
tools:context="com.condorpos.kitchen_bumpbar.MainActivity">

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="5dp">

<Button
    android:id="@+id/btnRetrieve"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="5dp"
    android:padding="5dp"
    android:text="@string/show_data" />

    <TextView
        android:id="@+id/result"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:clickable="false"
        android:padding="5dp"
        android:textColor="#000000"
        android:textSize="15sp" />

    <GridView
        android:layout_width="match_parent"
        android:layout_height="420dp"
        android:numColumns="5"
        android:verticalSpacing="140dp"
        android:id="@+id/gridView1"/>

        <android.support.v7.widget.RecyclerView
            android:id="@+id/expListView"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:visibility="invisible" />

        <TextView
            android:id="@+id/empty_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:visibility="gone"
            android:text="@string/empty_list"
            android:layout_marginLeft="8dp"
            android:layout_marginRight="8dp"/>

   </LinearLayout>
</LinearLayout>

在我声明的java源代码中,gridView1等于gv。

代码语言:javascript
复制
Griview gv;

gv=(GridView) findViewById(R.id.gridView1);

从下图中,它显示了数据没有完全显示每列,我想显示超过3行,但它给了我以下结果

任何想法或帮助都可以,谢谢各位

EN

Stack Overflow用户

发布于 2016-09-26 11:47:22

你需要使高度的GridViewmatch_parent/wrap_content (基于你的布局),不要固定大小420dp

票数 2
EN
查看全部 1 条回答
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/39694340

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档