Compare commits

...

3 Commits

2 changed files with 9 additions and 2 deletions

View File

@ -97,6 +97,10 @@ public class AlertGridViewAdapter extends BaseAdapter
switch(acknowledged.get(position) ? 1 : 0) switch(acknowledged.get(position) ? 1 : 0)
{ {
case 1: case 1:
ViewGroup.LayoutParams params = convertView.getLayoutParams();
if (params != null) {
params.height = 0;
}
view.imageViewAlert.setImageResource(R.drawable.alert_off); view.imageViewAlert.setImageResource(R.drawable.alert_off);
//view.layoutAlarm.setBackgroundColor(0xffffffff); //view.layoutAlarm.setBackgroundColor(0xffffffff);
break; break;

View File

@ -128,9 +128,12 @@ public class AlarmActivity extends Activity {
setConvertViewAlarm(arg1); setConvertViewAlarm(arg1);
// save position // save position
ackPosition = position; ackPosition = position;
if (!AppParams.DEMO) if (!AppParams.DEMO) {
getParentTab().getAlarms(AppParams.USERID);
setACK(getAllAlarms().get(position).idx, getAllAlarms().get(position).type, getAllAlarms().get(position).unitName); setACK(getAllAlarms().get(position).idx, getAllAlarms().get(position).type, getAllAlarms().get(position).unitName);
else { acknowledged.set(position, true);
updateResultsInUi(ALARM);
} else {
getAllAlarms().get(position).ack = 1; getAllAlarms().get(position).ack = 1;
updateResultsInUi("else"); updateResultsInUi("else");
} }