android - 如果通過點擊更換Gridview 的指定Item 背景顏色
問題描述
我的情況是這樣的。 主界面是用Gridview展示出餐廳里的餐桌情況。
默認(rèn)情況下,每個桌子都是綠色背景。 如果點擊該item, 會出現(xiàn)一個Dialog 窗口;提示是否開桌子。 如果點擊是,該item的背景顏色更換為紅色。
以下是我的代碼,請大神們指點迷津!
public class table extends AppCompatActivity implements AdapterView.OnItemClickListener{GridView gridView;@Overrideprotected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_table); gridView=(GridView)findViewById(R.id.gridview); String wtf[]={'1a','1b','1c','1d','2a','2b','2c','2d','3a','3b','3c','3d'}; gridView.setAdapter(new my_adapter(this,wtf)); gridView.setOnItemClickListener(this);}@Overridepublic void onItemClick(final AdapterView<?> adapterView, View view, final int i, long l) { new AlertDialog.Builder(this) .setTitle('臺座號 '+adapterView.getItemAtPosition(i).toString()) .setMessage('確定開桌?') .setPositiveButton('是', new DialogInterface.OnClickListener() {@Overridepublic void onClick(DialogInterface dialog, int which) { Toast.makeText(table.this,adapterView.getItemAtPosition(i).toString()+' 已開桌,請下單。',Toast.LENGTH_SHORT).show();} }) .setNegativeButton('否', null) .show();}}class my_adapter extends BaseAdapter{LayoutInflater inflater=null;Context ctx;String table_names[];ArrayList store_table_no;my_adapter(Context ctx, String table_names[]){ this.ctx=ctx; this.table_names=table_names; store_table_no=new ArrayList<Integer>(); for (int i=0;i<table_names.length;i++){store_table_no.add(table_names[i]); }}@Overridepublic int getCount() { return store_table_no.size();}@Overridepublic Object getItem(int i) { return store_table_no.get(i);}@Overridepublic long getItemId(int i) { return i;}@Overridepublic View getView(int i, View view, ViewGroup viewGroup) { View row=view; if(row==null){inflater=(LayoutInflater)ctx.getSystemService(Context.LAYOUT_INFLATER_SERVICE);row=inflater.inflate(R.layout.single,null); } TextView tv_table_no=(TextView)row.findViewById(R.id.table_no); tv_table_no.setText(''+store_table_no.get(i)); return row;}}// 這個是 row.xml <?xml version='1.0' encoding='utf-8'?><RelativeLayout xmlns:android='http://schemas.android.com/apk/res/android'android:orientation='vertical' android:layout_width='match_parent'android:layout_height='match_parent'><RelativeLayout android:layout_width='170dp' android:layout_height='100dp' android:background='@android:color/holo_green_dark' android:layout_centerHorizontal='true' android:layout_centerVertical='true'> <TextViewandroid:text='101'android:layout_width='wrap_content'android:layout_height='wrap_content'android: android:layout_centerVertical='true'android:layout_centerHorizontal='true' /></RelativeLayout></RelativeLayout>
如果再次點擊同樣item, 窗口再次出現(xiàn),點擊 ok 就返回默認(rèn)顏色。
問題解答
回答1:用selector文件做item的背景顏色例如
selector_item_bg.xml放到資源文件夾res/color/中
<?xml version='1.0' encoding='utf-8'?><selector xmlns:android='http://schemas.android.com/apk/res/android'> <item android:color='@color/red' android:state_selected='true'/> <item android:color='@color/green' android:state_selected='false'/></selector>
其中@color/red和@color/green自己添加
然后在item的layout中添加背景色, 就是你的row.xml
<?xml version='1.0' encoding='utf-8'?><RelativeLayout xmlns:android='http://schemas.android.com/apk/res/android'android:orientation='vertical' android:layout_width='match_parent'android:layout_height='match_parent'android:background='@color/selector_item_bg'>...省略中間的內(nèi)容</RelativeLayout>
關(guān)鍵代碼就是android:background='@color/selector_item_bg'把上面的selector設(shè)置成item的背景色.
當(dāng)你點擊開桌的時候把對應(yīng)的item的ViewsetSelected(true)就可以變成紅色了.
在代碼里面大概是修改你的onItemClick()
@Overridepublic void onItemClick(final AdapterView<?> adapterView, final View view, final int i, long l) { new AlertDialog.Builder(this) .setTitle('臺座號 '+adapterView.getItemAtPosition(i).toString()) .setMessage('確定開桌?') .setPositiveButton('是', new DialogInterface.OnClickListener() {@Overridepublic void onClick(DialogInterface dialog, int which) { Toast.makeText(table.this,adapterView.getItemAtPosition(i).toString()+' 已開桌,請下單。',Toast.LENGTH_SHORT).show(); // 這個view就是被點擊的item, 也就是row.xml渲染出來的view // 把它設(shè)置為selected, selector就會使其變色 // 根據(jù)selector_item_bg.xml, true對應(yīng)red, false對應(yīng)green view.setSelected(true);} }) .setNegativeButton('否', null) .show(); }}
關(guān)鍵點就這些, 其他細(xì)節(jié)百度吧
相關(guān)文章:
1. mysql數(shù)據(jù)庫在更新某種情況的時候,會將null或者空字符串置成-1?2. mysql - 兩張表做修改3. 怎么用navicat for mysql連接別的電腦的數(shù)據(jù)庫?4. mysql - 類似于之類的通知系統(tǒng)如何設(shè)計數(shù)據(jù)庫5. 更新mysql中被別人鎖定的行, 能不能快速失敗直接報錯, 而不是一直等待6. javascript - vue組件中使用百度分享初次加載失?。?/a>7. MySQL 查詢疑問?8. 主從復(fù)制 - MySQL 主從延遲 300s 以上,求大神解答9. python - 關(guān)于beautifulsoup獲取文檔內(nèi)容10. 如何往<thead> 所屬的部份添加顏色
