Start working on compact mode

This commit is contained in:
Michael Schättgen 2019-04-01 00:58:45 +02:00
parent d283eae7a0
commit 8b9ec5f976
2 changed files with 137 additions and 1 deletions

View file

@ -202,7 +202,7 @@ public class EntryAdapter extends RecyclerView.Adapter<EntryHolder> implements I
@Override
public EntryHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.card_entry, parent, false);
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.card_entry_compact, parent, false);
return new EntryHolder(view);
}