繁体   English   中英

从网格视图更改项目

[英]Changing an item from a gridview

我正在尝试访问GridView中的TextView,并更改它们的背景色,以便在我调用playSoE方法时它会改变。

ImageAdapter.java:

public class ImageAdapter extends BaseAdapter {
    private Context mContext;
    private int mCount;
    public int[] mIds; //stores Ids from TextViews

    public ImageAdapter(Context c, int count) {
        mContext = c;
        mCount = count;
        mIds = new int[mCount];
    }

    public int getCount() {
        return mCount;
    }

    public Object getItem(int position) {
        return null;
    }

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

    // create a new ImageView for each item referenced by the Adapter
    public View getView(int position, View convertView, ViewGroup parent) {
        TextView textView;

        if (convertView == null) {
            // if it's not recycled, initialize some attributes
            textView = new TextView(mContext);
            mIds[position] = textView.getId(); //Id is stored into array
            textView.setGravity(Gravity.CENTER);
            textView.setLayoutParams(new GridView.LayoutParams(100, 100));

        } else {
            textView = (TextView) convertView;
        }

        textView.setBackgroundColor(Color.RED);
        textView.setText("" + position);
        return textView;
    }

}

activity_main.xml中:

<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scrollbars="none"
    android:id="@+id/title_horizontalScrollView"
    android:layout_margin="1dp"
    android:fillViewport="false">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity"
        android:id="@+id/relativelayout">

        <GridView
            android:id="@+id/mGridView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:columnWidth="90dp"
            android:verticalSpacing="10dp"
            android:horizontalSpacing="10dp"
            android:stretchMode="columnWidth"
            android:gravity="center"
        />

    </RelativeLayout>

</HorizontalScrollView>

MainActivity.java:

public class MainActivity extends ActionBarActivity {

    private boolean mIsPlaying;
    private int primesLE;
    private GridView mGridView;

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

        mIsPlaying = false;

        ViewGroup.LayoutParams layoutParams;

        primesLE = 225;
        int numOfColumns = (int)Math.round(Math.sqrt((double) primesLE));
        int numOfRows = (int)Math.ceil((double)primesLE/(double)numOfColumns);

        GridView mGridView = (GridView) findViewById(R.id.mGridView);
        layoutParams = mGridView.getLayoutParams();
        layoutParams.width = 150*numOfColumns; //this is in pixels
        mGridView.setLayoutParams(layoutParams);
        mGridView.setNumColumns(numOfColumns);
        mGridView.setAdapter(new ImageAdapter(this, primesLE));

    }



    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        Log.d("Menu","Button Pressed");
        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        else if (id == R.id.action_status){
            if(mIsPlaying) {
                mIsPlaying = false;
                item.setIcon(R.drawable.ic_action_play);
                item.setTitle("Play");
                playSoE();
            }
            else {
                mIsPlaying = true;
                item.setIcon(R.drawable.ic_action_pause);
                item.setTitle("Pause");
            }
            return true;
        }

        return super.onOptionsItemSelected(item);
    }

    private void playSoE(){
        int[] viewIds = ((ImageAdapter)mGridView.getAdapter()).mIds; //trying to get the Ids for the TextViews, doesn't work and crashes
        for(int i = 0; i < primesLE;i++){
            Log.d("Getting view number",""+i);
            mGridView.getAdapter().
                getItem(i).setBackgroundColor(Color.BLUE);//this doesn't work, crashes
            mGridView.getChildAt(i).setBackgroundColor(Color.BLUE); //this doesn't work either, crashes
        }
    }

}

AndroidManifest.xml中:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.myname.sieveoferatosthenes" >

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

我一直在寻找执行此操作的方法,但似乎没有一个对我有用。

在您的playSoE方法中包括

<defined textview name here>.setBackgroundColor(Color.parseColor("#<hexadecimal color of your choice>"));

希望我能帮上忙。

编辑:我个人更喜欢w3查找十六进制颜色http://www.w3schools.com/tags/ref_colorpicker.asp

xml文件应包含什么

<TextView
            android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/whateveryouwantitsanid"
                android:layout_weight="1"
                />

java的

private TextView Texter;...
//in your on create
Texter = (TextView) findViewById(R.id.whateveryouwantitsanid);
//where you want to change background
Texter.setBackgroundColor(Color.parseColor("#yourhexcolorhere"));

ps我不知道你为什么要把你的id放在一个数组中

我解决了我的问题, mGridView一直为空。 在MainActivity中,我正在使用GridView mGridView = (GridView) findViewById(R.id.mGridView); 这是不好的编码,并且不认为GridView嵌套在xml中。 我将其更改为

View v1 = findViewById(R.id.title_horizontalScrollView);
View v2 = v1.findViewById(R.id.relativelayout);
mGridView = (GridView) v2.findViewById(R.id.mGridView);

而且mGridView不再为null,然后使用getChildAt(int position)将获得我想要的TextView (尽管有些位置我仍然无法访问)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM