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

a good amount of maintenance work #23

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
migrate app to appCompat
Signed-off-by: TacoTheDank <SkytkRSfan3895@gmail.com>
  • Loading branch information
TacoTheDank committed Dec 2, 2018
commit 2d982effc0a226d18b771a9799c2c0373b798f52
12 changes: 6 additions & 6 deletions app/src/main/res/layout/content_detail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
android:background="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:focusable="true"
android:src="@drawable/ic_repeat_white_24dp" />
app:srcCompat="@drawable/ic_repeat_white_24dp" />

<Space
android:layout_width="@dimen/activity_horizontal_margin"
Expand All @@ -96,7 +96,7 @@
android:background="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:focusable="true"
android:src="@drawable/ic_shuffle_white_24dp" />
app:srcCompat="@drawable/ic_shuffle_white_24dp" />

</LinearLayout>

Expand All @@ -114,28 +114,28 @@
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_skip_previous_white_24dp" />
app:srcCompat="@drawable/ic_skip_previous_white_24dp" />

<ImageView
android:id="@+id/rewind"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_fast_rewind_white_24dp" />
app:srcCompat="@drawable/ic_fast_rewind_white_24dp" />

<ImageView
android:id="@+id/forward"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_fast_forward_white_24dp" />
app:srcCompat="@drawable/ic_fast_forward_white_24dp" />

<ImageView
android:id="@+id/next"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_skip_next_white_24dp" />
app:srcCompat="@drawable/ic_skip_next_white_24dp" />

</LinearLayout>

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/content_list.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
android:background="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:focusable="true"
android:src="@drawable/ic_more_vert_white_24dp" />
app:srcCompat="@drawable/ic_more_vert_white_24dp" />

</RelativeLayout>

Expand Down