Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Hide icons and up version for a v0.3.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rken committed Sep 10, 2016
1 parent a9a242e commit 9738534
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {
buildToolsVersion "24.0.2"

def versionMajor = 0
def versionMinor = 2
def versionMinor = 3
def versionPatch = 0
def versionBuild = 0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import android.widget.ImageView;
import android.widget.TextView;

import com.bumptech.glide.Glide;
import com.futuremind.recyclerviewfastscroll.SectionTitleProvider;
import com.wefika.flowlayout.FlowLayout;

Expand All @@ -26,7 +25,6 @@
import subreddit.android.appstore.backend.data.AppTags;
import subreddit.android.appstore.util.ui.BaseAdapter;
import subreddit.android.appstore.util.ui.BaseViewHolder;
import subreddit.android.appstore.util.ui.glide.PlaceHolderRequestListener;


public class AppListAdapter extends BaseAdapter<AppListAdapter.ViewHolder> implements Filterable, SectionTitleProvider {
Expand Down Expand Up @@ -84,10 +82,10 @@ public void bind(AppInfo item) {
appName.setText(item.getAppName());
description.setText(item.getDescription());

Glide.with(getContext())
.load(R.mipmap.ic_launcher)
.listener(new PlaceHolderRequestListener(iconImage, iconPlaceholder))
.into(iconImage);
// Glide.with(getContext())
// .load(R.mipmap.ic_launcher)
// .listener(new PlaceHolderRequestListener(iconImage, iconPlaceholder))
// .into(iconImage);

tagContainer.removeAllViews();
for (AppTags appTags : item.getTags()) {
Expand Down
5 changes: 3 additions & 2 deletions app/src/main/res/layout/adapter_applist_line.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="top"
android:visibility="gone"
android:layout_marginLeft="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp">
Expand All @@ -34,9 +35,9 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
android:layout_marginLeft="72dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginStart="72dp"
android:layout_marginStart="16dp"
android:paddingBottom="16dp"
android:paddingTop="16dp">

Expand Down

0 comments on commit 9738534

Please sign in to comment.