proton-mail-android/app/src/main/java/ch/protonmail/android/adapters/SimpleCountriesAdapter.java

108 lines
3.6 KiB
Java
Raw Normal View History

2020-04-16 15:44:53 +00:00
/*
2022-02-28 15:15:59 +00:00
* Copyright (c) 2022 Proton AG
*
* This file is part of Proton Mail.
*
* Proton Mail is free software: you can redistribute it and/or modify
2020-04-16 15:44:53 +00:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
2022-02-28 15:15:59 +00:00
*
* Proton Mail is distributed in the hope that it will be useful,
2020-04-16 15:44:53 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2022-02-28 15:15:59 +00:00
*
2020-04-16 15:44:53 +00:00
* You should have received a copy of the GNU General Public License
2022-02-28 15:15:59 +00:00
* along with Proton Mail. If not, see https://www.gnu.org/licenses/.
2020-04-16 15:44:53 +00:00
*/
package ch.protonmail.android.adapters;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import java.util.List;
import butterknife.BindView;
import butterknife.ButterKnife;
import ch.protonmail.android.R;
import ch.protonmail.android.api.models.Country;
/**
* Created by dkadrikj on 3/29/16.
*/
public class SimpleCountriesAdapter extends ArrayAdapter<Country> {
private int selectedPosition = 0;
private int selectedColor;
private int normalColor;
public SimpleCountriesAdapter(Context context, List<Country> countries) {
super(context, R.layout.simple_country_list_item, countries);
selectedColor = getContext().getResources().getColor(R.color.upgrade_section);
normalColor = getContext().getResources().getColor(R.color.iron_gray);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
View view = LayoutInflater.from(getContext()).inflate(R.layout.simple_country_list_item, null);
final ViewHolder viewHolder = new ViewHolder(view);
view.setTag(viewHolder);
convertView = view;
}
final Country item = getItem(position);
final ViewHolder viewHolder = (ViewHolder) convertView.getTag();
viewHolder.mCountryName.setText(item.getName());
viewHolder.mCountryName.setTextColor(selectedColor);
return convertView;
}
public void setSelectedPosition(int selectedPosition) {
this.selectedPosition = selectedPosition;
}
@Override
public View getDropDownView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
View view = LayoutInflater.from(getContext()).inflate(R.layout.simple_country_list_item, null);
final ViewHolder viewHolder = new ViewHolder(view);
view.setTag(viewHolder);
convertView = view;
}
final Country item = getItem(position);
final ViewHolder viewHolder = (ViewHolder) convertView.getTag();
viewHolder.mCountryName.setText(item.getName());
if (position == 6) {
viewHolder.mSeparator.setVisibility(View.VISIBLE);
} else {
viewHolder.mSeparator.setVisibility(View.GONE);
}
if (selectedPosition > 0 && position == selectedPosition) {
viewHolder.mCountryName.setTextColor(selectedColor);
} else {
viewHolder.mCountryName.setTextColor(normalColor);
}
return convertView;
}
static class ViewHolder {
@BindView(R.id.country_name)
TextView mCountryName;
@BindView(R.id.separator)
View mSeparator;
public ViewHolder(View view) {
ButterKnife.bind(this, view);
}
}
}