0

グリッド ビューの画像を画面全体に表示するにはどうすればよいですか?

ここに私のレイアウトコードがあります:

<?xml version="1.0" encoding="utf-8"?>
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/grid_view"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_margin="10dp"
    android:padding="10dp"
    android:columnWidth="100dp"
    android:gravity="center"
    android:horizontalSpacing="10dp"
    android:numColumns="auto_fit"
    android:stretchMode="columnWidth"
    android:verticalSpacing="10dp" >
</GridView>

画面の写真を掲載します。

しかし、画像を小さく表示しており、画面全体を使用していません。

これが私のアダプタークラスです:

public class MenuCategoryAdapter extends BaseAdapter {

    private GlobalObjects global;
    private Context mContext;

    // Keep all Objects in array
    public ArrayList<MenuCategory> categories = new ArrayList<MenuCategory>();

    // Constructor
    public MenuCategoryAdapter(Context c, GlobalObjects _global) {
        mContext = c;
        global = _global;

        JSONArray categoriesObj = getCategoriesFromServer();
        if (categoriesObj != null) {
            putCategoriesIntoArray(categoriesObj);
        } else {
            // Categories is null
            Log.e("ImageAdapter", " Categories is null");
        }
    }

    @Override
    public int getCount() {
        return categories.size();
    }

    @Override
    public Object getItem(int position) {
        return categories.get(position);
    }

    @Override
    public long getItemId(int position) {
        return 0;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        ImageView imageView = categories.get(position).getImg();
        imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
        imageView.setLayoutParams(new GridView.LayoutParams(70, 70));
        return imageView;
    }
}
4

1 に答える 1

1

ここにグリッドビューがあり、画面全体に表示されます。それは私のために働きます。何か問題が発生した場合は、すぐにお知らせください。

<?xml version="1.0" encoding="utf-8"?>

<GridView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/grid_view"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:numColumns="auto_fit"
    android:columnWidth="90dp"
    android:horizontalSpacing="5dp"
    android:verticalSpacing="5dp"
    android:gravity="center"
    android:stretchMode="columnWidth" >

    </GridView>

また、Java コードを編集する必要があります。スケールを 70,70 から fill_parant にしてください。

そのためのサンプルアプリもあります。必要な場合は、アップロードしますので教えてください。

于 2013-08-16T13:48:53.367 に答える