Fixed filters/track item dividers
This commit is contained in:
parent
53bdb9cb12
commit
7fb8226a5f
4 changed files with 7 additions and 6 deletions
|
@ -26,7 +26,7 @@
|
|||
android:layout_width="1dp"
|
||||
android:layout_height="20dp"
|
||||
android:layout_gravity="center"
|
||||
android:background="?android:attr/textColorSecondary"/>
|
||||
android:background="@color/strong_divider"/>
|
||||
<TextView
|
||||
android:id="@+id/secondButton"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -48,7 +48,7 @@
|
|||
android:layout_width="1dp"
|
||||
android:layout_height="20dp"
|
||||
android:layout_gravity="center"
|
||||
android:background="?android:attr/textColorSecondary"/>
|
||||
android:background="@color/strong_divider"/>
|
||||
<TextView
|
||||
android:id="@+id/thirdButton"
|
||||
android:layout_width="wrap_content"
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="1dp"
|
||||
android:alpha="0.25"
|
||||
android:background="?android:attr/textColorHint"
|
||||
android:background="@color/strong_divider"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@id/logo_container"
|
||||
app:layout_constraintTop_toBottomOf="@+id/status_container" />
|
||||
|
@ -158,7 +158,7 @@
|
|||
android:layout_marginTop="10dp"
|
||||
android:layout_marginBottom="10dp"
|
||||
android:alpha="0.25"
|
||||
android:background="?android:attr/textColorHint"
|
||||
android:background="@color/strong_divider"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/track_status"
|
||||
|
@ -170,7 +170,7 @@
|
|||
android:layout_marginTop="10dp"
|
||||
android:layout_marginBottom="10dp"
|
||||
android:alpha="0.25"
|
||||
android:background="?android:attr/textColorHint"
|
||||
android:background="@color/strong_divider"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/track_chapters"
|
||||
|
@ -198,7 +198,6 @@
|
|||
android:id="@+id/track_group"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone"
|
||||
app:constraint_referenced_ids="sub_tracking_layout,status_container,divider" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
|
||||
<color name="textColorPrimary">@color/md_white_1000</color>
|
||||
<color name="textColorPrimaryInverse">@color/md_black_1000_87</color>
|
||||
<color name="strong_divider">@color/md_white_1000_38</color>
|
||||
<color name="divider">@color/md_white_1000_12</color>
|
||||
<color name="download">@color/material_green_700</color>
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
<color name="textColorPrimary">@color/md_black_1000_87</color>
|
||||
<color name="textColorPrimaryInverse">@color/md_white_1000</color>
|
||||
|
||||
<color name="strong_divider">@color/md_black_1000_38</color>
|
||||
<color name="divider">@color/md_black_1000_12</color>
|
||||
<color name="badgeColor">@color/material_red_accent_700</color>
|
||||
<color name="download">@color/material_green_800</color>
|
||||
|
|
Reference in a new issue