Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplicate information icon resources #2734

Merged
merged 1 commit into from
Mar 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions app/src/main/res/drawable/ic_info_outline_black_24dp.xml

This file was deleted.

5 changes: 0 additions & 5 deletions app/src/main/res/drawable/ic_info_outline_blue_24dp.xml

This file was deleted.

28 changes: 14 additions & 14 deletions app/src/main/res/layout/activity_achievements.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
android:layout_marginEnd="@dimen/activity_margin_horizontal"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
app:srcCompat="@drawable/ic_info_outline_black_24dp"
android:tint="?attr/icon"
app:srcCompat="@drawable/ic_info_outline_24dp"
android:tint="@color/black"
android:layout_marginVertical="@dimen/activity_margin_vertical" />

<androidx.constraintlayout.widget.ConstraintLayout
Expand Down Expand Up @@ -117,8 +117,8 @@
android:layout_marginEnd="@dimen/activity_margin_horizontal"
android:layout_toRightOf="@+id/images_upload_text_param"
android:layout_toEndOf="@+id/images_upload_text_param"
app:srcCompat="@drawable/ic_info_outline_blue_24dp"
android:tint="?attr/icon"
app:srcCompat="@drawable/ic_info_outline_24dp"
android:tint="@color/primaryDarkColor"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"/>

Expand Down Expand Up @@ -170,8 +170,8 @@
android:id="@+id/images_reverted_info"
android:layout_toRightOf="@+id/images_reverted_text"
android:layout_toEndOf="@+id/images_reverted_text"
app:srcCompat="@drawable/ic_info_outline_blue_24dp"
android:tint="?attr/icon"
app:srcCompat="@drawable/ic_info_outline_24dp"
android:tint="@color/primaryDarkColor"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"/>

Expand Down Expand Up @@ -235,8 +235,8 @@
android:layout_marginEnd="@dimen/activity_margin_horizontal"
android:layout_toRightOf="@+id/images_used_by_wiki_text"
android:layout_toEndOf="@+id/images_used_by_wiki_text"
app:srcCompat="@drawable/ic_info_outline_blue_24dp"
android:tint="?attr/icon"
app:srcCompat="@drawable/ic_info_outline_24dp"
android:tint="@color/primaryDarkColor"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"/>

Expand Down Expand Up @@ -326,8 +326,8 @@
android:layout_marginRight="@dimen/activity_margin_horizontal"
android:layout_marginEnd="@dimen/activity_margin_horizontal"
android:layout_gravity="top"
app:srcCompat="@drawable/ic_info_outline_blue_24dp"
android:tint="?attr/icon" />
app:srcCompat="@drawable/ic_info_outline_24dp"
android:tint="@color/primaryDarkColor" />

</LinearLayout>

Expand Down Expand Up @@ -394,8 +394,8 @@
android:layout_marginRight="@dimen/activity_margin_horizontal"
android:layout_marginEnd="@dimen/activity_margin_horizontal"
android:layout_gravity="top"
app:srcCompat="@drawable/ic_info_outline_blue_24dp"
android:tint="?attr/icon" />
app:srcCompat="@drawable/ic_info_outline_24dp"
android:tint="@color/primaryDarkColor" />

</LinearLayout>

Expand Down Expand Up @@ -461,8 +461,8 @@
android:layout_marginRight="@dimen/activity_margin_horizontal"
android:layout_marginEnd="@dimen/activity_margin_horizontal"
android:layout_gravity="top"
app:srcCompat="@drawable/ic_info_outline_blue_24dp"
android:tint="?attr/icon" />
app:srcCompat="@drawable/ic_info_outline_24dp"
android:tint="@color/primaryDarkColor" />

</LinearLayout>

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/custom_nearby_tab_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
android:id="@+id/nearby_info_image"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
app:srcCompat="@drawable/ic_info_outline_white_24dp"
app:srcCompat="@drawable/ic_info_outline_24dp"
/>
</LinearLayout>
2 changes: 1 addition & 1 deletion app/src/main/res/layout/detail_category_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
android:textColor="@android:color/white"
android:textSize="@dimen/description_text_size"
app:drawablePadding="@dimen/small_gap"
app:drawableStart="@drawable/ic_info_outline_white_24dp"
app:drawableStart="@drawable/ic_info_outline_24dp"
/>

</LinearLayout>
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_media_detail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
android:textColor="@android:color/white"
android:textSize="@dimen/description_text_size"
app:drawablePadding="@dimen/tiny_gap"
app:drawableStart="@drawable/ic_info_outline_white_24dp"
app:drawableStart="@drawable/ic_info_outline_24dp"
tools:text="License link" />
</LinearLayout>

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/menu/drawer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<group android:id="@+id/drawer_contact">
<item
android:id="@+id/action_about"
android:icon="@drawable/ic_info_outline_black_24dp"
android:icon="@drawable/ic_info_outline_24dp"
android:title="@string/navigation_item_about" />
<item
android:id="@+id/action_introduction"
Expand Down