Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 550eefae authored by John Reck's avatar John Reck Committed by Android Git Automerger
Browse files

am 01ae91aa: Merge "Fix height" into gb-ub-photos-bryce

* commit '01ae91aa':
  Fix height
parents 0cf42d07 01ae91aa
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ import com.android.gallery3d.filtershow.ui.FilterIconButton;
public class CategoryAdapter extends ArrayAdapter<Action> {

    private static final String LOGTAG = "CategoryAdapter";
    private int mItemHeight = 200;
    private int mItemHeight;
    private View mContainer;
    private int mItemWidth = ListView.LayoutParams.MATCH_PARENT;
    private boolean mUseFilterIconButton = false;
@@ -43,6 +43,7 @@ public class CategoryAdapter extends ArrayAdapter<Action> {

    public CategoryAdapter(Context context, int textViewResourceId) {
        super(context, textViewResourceId);
        mItemHeight = (int) (context.getResources().getDisplayMetrics().density * 100);
    }

    public CategoryAdapter(Context context) {