Add RTL support to remaining list items

Also fixes several small UI glitches with long texts
This commit is contained in:
Torsten Grote
2018-09-11 17:23:01 -03:00
parent 5122c961b4
commit 53edcaf3e9
12 changed files with 266 additions and 257 deletions

View File

@@ -1,6 +1,7 @@
package org.briarproject.briar.android.sharing;
import android.content.Context;
import android.support.annotation.NonNull;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
@@ -26,7 +27,7 @@ public abstract class InvitationAdapter<I extends InvitationItem, VH extends Inv
}
@Override
public void onBindViewHolder(VH ui, int position) {
public void onBindViewHolder(@NonNull VH ui, int position) {
I item = getItemAt(position);
if (item == null) return;
ui.onBind(item, listener);