hide ack alarms
This commit is contained in:
@ -97,6 +97,10 @@ public class AlertGridViewAdapter extends BaseAdapter
|
||||
switch(acknowledged.get(position) ? 1 : 0)
|
||||
{
|
||||
case 1:
|
||||
ViewGroup.LayoutParams params = convertView.getLayoutParams();
|
||||
if (params != null) {
|
||||
params.height = 0;
|
||||
}
|
||||
view.imageViewAlert.setImageResource(R.drawable.alert_off);
|
||||
//view.layoutAlarm.setBackgroundColor(0xffffffff);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user