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

Commit 9738534

Browse files
committed
Hide icons and up version for a v0.3.0 release.
1 parent a9a242e commit 9738534

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ android {
2424
buildToolsVersion "24.0.2"
2525

2626
def versionMajor = 0
27-
def versionMinor = 2
27+
def versionMinor = 3
2828
def versionPatch = 0
2929
def versionBuild = 0
3030

app/src/main/java/subreddit/android/appstore/screens/list/AppListAdapter.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import android.widget.ImageView;
1010
import android.widget.TextView;
1111

12-
import com.bumptech.glide.Glide;
1312
import com.futuremind.recyclerviewfastscroll.SectionTitleProvider;
1413
import com.wefika.flowlayout.FlowLayout;
1514

@@ -26,7 +25,6 @@
2625
import subreddit.android.appstore.backend.data.AppTags;
2726
import subreddit.android.appstore.util.ui.BaseAdapter;
2827
import subreddit.android.appstore.util.ui.BaseViewHolder;
29-
import subreddit.android.appstore.util.ui.glide.PlaceHolderRequestListener;
3028

3129

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

87-
Glide.with(getContext())
88-
.load(R.mipmap.ic_launcher)
89-
.listener(new PlaceHolderRequestListener(iconImage, iconPlaceholder))
90-
.into(iconImage);
85+
// Glide.with(getContext())
86+
// .load(R.mipmap.ic_launcher)
87+
// .listener(new PlaceHolderRequestListener(iconImage, iconPlaceholder))
88+
// .into(iconImage);
9189

9290
tagContainer.removeAllViews();
9391
for (AppTags appTags : item.getTags()) {

app/src/main/res/layout/adapter_applist_line.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
android:layout_width="40dp"
1212
android:layout_height="40dp"
1313
android:layout_gravity="top"
14+
android:visibility="gone"
1415
android:layout_marginLeft="16dp"
1516
android:layout_marginStart="16dp"
1617
android:layout_marginTop="16dp">
@@ -34,9 +35,9 @@
3435
android:layout_width="match_parent"
3536
android:layout_height="wrap_content"
3637
android:layout_marginEnd="16dp"
37-
android:layout_marginLeft="72dp"
38+
android:layout_marginLeft="16dp"
3839
android:layout_marginRight="16dp"
39-
android:layout_marginStart="72dp"
40+
android:layout_marginStart="16dp"
4041
android:paddingBottom="16dp"
4142
android:paddingTop="16dp">
4243

0 commit comments

Comments
 (0)