nl.hnogames.domoticz.Adapters.ServerAdapter.java Source code

Java tutorial

Introduction

Here is the source code for nl.hnogames.domoticz.Adapters.ServerAdapter.java

Source

/*
 * Copyright (C) 2015 Domoticz - Mark Heinis
 *
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you under the Apache License, Version 2.0 (the
 *  "License"); you may not use this file except in compliance
 *  with the License.  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing,
 *  software distributed under the License is distributed on an
 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 *  KIND, either express or implied.  See the License for the
 *  specific language governing permissions and limitations
 *  under the License.
 */

package nl.hnogames.domoticz.Adapters;

import android.app.Activity;
import android.content.Context;
import android.support.v4.content.ContextCompat;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.TextView;

import java.util.ArrayList;

import nl.hnogames.domoticz.Interfaces.ServerClickListener;
import nl.hnogames.domoticz.R;
import nl.hnogames.domoticz.Utils.SharedPrefUtil;
import nl.hnogames.domoticzapi.Containers.ServerInfo;

public class ServerAdapter extends BaseAdapter {

    @SuppressWarnings("unused")
    private static final String TAG = ServerAdapter.class.getSimpleName();
    public ArrayList<ServerInfo> data = null;
    private Context context;
    private ServerClickListener listener;

    private SharedPrefUtil mSharedPrefs;

    public ServerAdapter(Context context, ArrayList<ServerInfo> data, ServerClickListener l) {
        super();

        this.context = context;
        mSharedPrefs = new SharedPrefUtil(context);
        this.data = data;
        this.listener = l;
    }

    @Override
    public int getCount() {
        if (data == null)
            return 0;

        return data.size();
    }

    @Override
    public Object getItem(int i) {
        return data.get(i);
    }

    @Override
    public long getItemId(int i) {
        return 0;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        final ViewHolder holder;
        int layoutResourceId;

        final ServerInfo mServerInfo = data.get(position);
        holder = new ViewHolder();

        layoutResourceId = R.layout.server_row;
        LayoutInflater inflater = ((Activity) context).getLayoutInflater();
        convertView = inflater.inflate(layoutResourceId, parent, false);

        if (mSharedPrefs.darkThemeEnabled()) {
            (convertView.findViewById(R.id.row_wrapper))
                    .setBackground(ContextCompat.getDrawable(context, R.drawable.bordershadowdark));
            (convertView.findViewById(R.id.row_global_wrapper))
                    .setBackgroundColor(ContextCompat.getColor(context, R.color.background_dark));

            if ((convertView.findViewById(R.id.remove_button)) != null)
                (convertView.findViewById(R.id.remove_button))
                        .setBackground(ContextCompat.getDrawable(context, R.drawable.button_status_dark));
        }

        holder.enable = (CheckBox) convertView.findViewById(R.id.enableServer);
        holder.server_name = (TextView) convertView.findViewById(R.id.server_name);
        holder.server_remote_url = (TextView) convertView.findViewById(R.id.server_remote_ip);
        holder.server_local_url = (TextView) convertView.findViewById(R.id.server_local_ip);
        holder.remove = (Button) convertView.findViewById(R.id.remove_button);

        holder.server_local_url.setText(context.getString(R.string.local) + ": " + mServerInfo.getLocalServerUrl());
        holder.server_remote_url
                .setText(context.getString(R.string.remote) + ": " + mServerInfo.getRemoteServerUrl());
        holder.server_name.setText(mServerInfo.getServerName());

        holder.remove.setId(position);
        holder.remove.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(final View v) {
                try {
                    handleRemoveButtonClick(data.get(v.getId()));
                } catch (Exception ex) {
                }
            }
        });

        holder.enable.setId(position);
        holder.enable.setChecked(mServerInfo.isEnabled());
        holder.enable.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                handleEnableChanged(data.get(buttonView.getId()), isChecked);
            }
        });

        convertView.setTag(holder);
        return convertView;
    }

    private void handleRemoveButtonClick(ServerInfo server) {
        listener.onRemoveClick(server);
    }

    private boolean handleEnableChanged(ServerInfo server, boolean enabled) {
        return listener.onEnableClick(server, enabled);
    }

    static class ViewHolder {
        TextView server_name;
        TextView server_remote_url;
        TextView server_local_url;
        CheckBox enable;
        Button remove;
    }
}