gpt4 book ai didi

android - 彩色方 block 的GridView -- Android

转载 作者:行者123 更新时间:2023-11-29 02:11:51 24 4
gpt4 key购买 nike

我想制作一个包含随机颜色方 block 的 GridView,我想将其放入 RelativeLayout 中,以便网格上方和下方的按钮可以改变网格的状态(即某些方 block 的颜色)。我无法弄清楚如何创建这些彩色方 block 并将它们放入网格中。

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

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gameLayout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/colorGrid"
android:layout_width="200dip"
android:layout_height="200dip"
android:columnWidth="90dip"
android:numColumns="auto_fit"
android:verticalSpacing="0.0dip"
android:horizontalSpacing="0.0dip"
android:layout_centerHorizontal="true" />

<Button
android:id="@+id/redButton"
android:layout_width="75dip"
android:layout_height="75dip"
android:text="RED"
android:layout_centerHorizontal="true"
android:layout_weight="1.0"
android:layout_below="@id/colorGrid" />

<Button
android:id="@+id/yellowButton"
android:layout_width="75dip"
android:layout_height="75dip"
android:text="YELLOW"
android:layout_weight="1.0"
android:layout_centerHorizontal="true"
android:layout_below="@id/redButton" />

<Button
android:id="@+id/greenButton"
android:layout_width="75dip"
android:layout_height="75dip"
android:text="GREEN"
android:layout_weight="1.0"
android:layout_toLeftOf="@id/redButton"
android:layout_below="@id/colorGrid" />

<Button
android:id="@+id/lightBlueButton"
android:layout_width="75dip"
android:layout_height="75dip"
android:text="LIGHT BLUE"
android:layout_weight="1.0"
android:layout_toRightOf="@id/redButton"
android:layout_below="@id/colorGrid" />

<Button
android:id="@+id/darkBlueButton"
android:layout_width="75dip"
android:layout_height="75dip"
android:text="DARK BLUE"
android:layout_weight="1.0"
android:layout_toLeftOf="@id/redButton"
android:layout_below="@id/redButton" />

<Button
android:id="@+id/purpleButton"
android:layout_width="75dip"
android:layout_height="75dip"
android:text="PURPLE"
android:layout_weight="1.0"
android:layout_toRightOf="@id/redButton"
android:layout_below="@id/redButton" />



</RelativeLayout>

我希望方 block 彼此紧挨着,这就是为什么我将网格中的垂直和水平间距分别减小为 0。

我是否应该以编程方式创建这些方 block 并使用某种适配器将它们添加到网格中?我只需要入门帮助。谢谢!

我的适配器类代码:

import android.content.Context;
import android.graphics.Color;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;

public class GameAdapter extends BaseAdapter{
private Context mContext;

public GameAdapter(Context c){
mContext = c;
}

public int getCount() {

return 10;
}

@Override
public Object getItem(int position) {

return null;
}

@Override
public long getItemId(int position) {

return 0;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view;
if(convertView==null){
view=new View(mContext);
}else{
view = (View) convertView;
}
view.setBackgroundColor(Color.rgb((int)(Math.random()*255), (int)(Math.random()*255), (int)(Math.random()*255)));
return view;
}

我的 Activity 课上的电话:

setContentView(R.layout.gamelayout);
GridView gridView = (GridView)findViewById(R.id.colorGrid);
gridView.setAdapter(new GameAdapter(TheActivity.this));

最佳答案

gridview 已经返回了一个正方形网格。因此,您可以从适配器更改每个方 block 的颜色。

public int getCount() {

return 10;
}

private int r,g,b;
r=Rand with bounds [0,255]
g=...
b=....

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


View view;
view=new ImageView(mContext);
view.setBackgroundColor(Color.rgb(r, g, b));

return view;

关于android - 彩色方 block 的GridView -- Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6803935/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com