fedilab-Android-App/app/src/main/java/app/fedilab/android/drawers/WhoToFollowAdapter.java

109 lines
3.4 KiB
Java
Raw Normal View History

2019-05-18 11:10:30 +02:00
package app.fedilab.android.drawers;
2018-09-10 19:21:42 +02:00
/* Copyright 2018 Thomas Schneider
*
2019-05-18 11:10:30 +02:00
* This file is a part of Fedilab
2018-09-10 19:21:42 +02:00
*
* This program is free software; you can redistribute it and/or modify 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.
*
2019-05-18 11:10:30 +02:00
* Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
2018-09-10 19:21:42 +02:00
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
2019-05-18 11:10:30 +02:00
* You should have received a copy of the GNU General Public License along with Fedilab; if not,
2018-09-10 19:21:42 +02:00
* see <http://www.gnu.org/licenses>. */
import android.content.Context;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.LinearLayout;
import android.widget.TextView;
2019-11-15 16:32:25 +01:00
import androidx.core.content.ContextCompat;
2018-09-10 19:21:42 +02:00
import java.util.List;
2019-11-15 16:32:25 +01:00
2019-05-18 11:10:30 +02:00
import app.fedilab.android.R;
import app.fedilab.android.activities.WhoToFollowActivity;
2019-11-15 16:32:25 +01:00
import app.fedilab.android.helper.Helper;
2019-05-18 11:10:30 +02:00
2018-09-10 19:21:42 +02:00
/**
* Created by Thomas on 10/09/2018.
* Adapter for who to follow list
*/
public class WhoToFollowAdapter extends BaseAdapter {
private List<String> lists;
private Context context;
2019-09-06 17:55:14 +02:00
public WhoToFollowAdapter(List<String> lists) {
2018-09-10 19:21:42 +02:00
this.lists = lists;
}
@Override
public int getCount() {
return lists.size();
}
@Override
public Object getItem(int position) {
return lists.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
2019-08-19 09:18:30 +02:00
context = parent.getContext();
2019-11-12 18:51:39 +01:00
LayoutInflater layoutInflater = LayoutInflater.from(context);
2018-09-10 19:21:42 +02:00
String item = lists.get(position);
final ViewHolder holder;
if (convertView == null) {
convertView = layoutInflater.inflate(R.layout.drawer_search, parent, false);
holder = new ViewHolder();
holder.search_title = convertView.findViewById(R.id.search_keyword);
holder.search_container = convertView.findViewById(R.id.search_container);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
2019-11-12 18:51:39 +01:00
Helper.changeDrawableColor(context, R.drawable.ic_keyboard_arrow_right, R.attr.menuIconColor);
2018-09-10 19:21:42 +02:00
Drawable next = ContextCompat.getDrawable(context, R.drawable.ic_keyboard_arrow_right);
holder.search_title.setText(item);
assert next != null;
final float scale = context.getResources().getDisplayMetrics().density;
2019-09-06 17:55:14 +02:00
next.setBounds(0, 0, (int) (30 * scale + 0.5f), (int) (30 * scale + 0.5f));
2018-09-10 19:21:42 +02:00
holder.search_title.setCompoundDrawables(null, null, next, null);
2020-03-07 14:16:28 +01:00
holder.search_container.setOnClickListener(v -> {
Intent intent = new Intent(context, WhoToFollowActivity.class);
Bundle b = new Bundle();
b.putString("item", item);
intent.putExtras(b);
context.startActivity(intent);
2018-09-10 19:21:42 +02:00
});
return convertView;
}
2020-03-07 14:16:28 +01:00
private static class ViewHolder {
2018-09-10 19:21:42 +02:00
LinearLayout search_container;
TextView search_title;
}
}