This repository was archived by the owner on Nov 21, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +28
-10
lines changed Expand file tree Collapse file tree 4 files changed +28
-10
lines changed Original file line number Diff line number Diff line change 15
15
<selector xmlns:android="http://schemas.android.com/apk/res/android">
16
16
17
17
<item
18
- android:state_activated="true"
19
18
android:alpha="0.20"
20
19
android:color="?attr/colorOnSurface"/>
21
20
Original file line number Diff line number Diff line change 12
12
or implied. See the License for the specific language governing permissions and limitations under
13
13
the License.
14
14
-->
15
- <inset
15
+ <shape
16
16
xmlns:android="http://schemas.android.com/apk/res/android"
17
- android:inset="@dimen/grid_2">
18
- <shape android:shape="rectangle">
19
- <solid android:color="#979797"/>
20
- <size android:height="1dp"/>
21
- </shape>
22
- </inset>
17
+ android:shape="rectangle">
18
+ <solid android:color="@color/divider"/>
19
+ </shape>
Original file line number Diff line number Diff line change
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ Copyright (c) 2019 Google Inc.
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
6
+ in compliance with the License. You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software distributed under the License
11
+ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12
+ or implied. See the License for the specific language governing permissions and limitations under
13
+ the License.
14
+ -->
15
+ <inset
16
+ xmlns:android="http://schemas.android.com/apk/res/android"
17
+ android:inset="@dimen/grid_2">
18
+ <shape android:shape="rectangle">
19
+ <solid android:color="@color/divider"/>
20
+ <size android:height="@dimen/divider_height"/>
21
+ </shape>
22
+ </inset>
Original file line number Diff line number Diff line change 135
135
app:layout_constraintStart_toStartOf="parent"
136
136
app:layout_constraintTop_toBottomOf="@id/description"
137
137
app:layout_constraintEnd_toEndOf="parent"
138
- android:background="@drawable/divider "/>
138
+ android:background="@drawable/inset_divider "/>
139
139
140
140
<TextView
141
141
android:id="@+id/need"
276
276
app:layout_constraintStart_toStartOf="parent"
277
277
app:layout_constraintTop_toBottomOf="@id/playlist_title"
278
278
app:layout_constraintEnd_toEndOf="parent"
279
- android:background="@color /divider"
279
+ android:background="@drawable /divider"
280
280
android:alpha="0"/>
281
281
282
282
<androidx.recyclerview.widget.RecyclerView
You can’t perform that action at this time.
0 commit comments