Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc36af5a authored by Mohit Mali's avatar Mohit Mali Committed by hacker
Browse files

Ui revamping color implmentation , player seeker and control , player...

Ui revamping color implmentation , player seeker and control , player background , action bar colors, main tabs and color and its background. top action bar text color , menu icon color , theme text color
parent 8b44518b
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">

    <path
        android:fillColor="@color/circular_play_pause_collapsed"
        android:pathData="M8 5v14l11-7z" />
</vector>
+51 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2014 The CyanogenMod Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<org.lineageos.eleven.widgets.PlayPauseButtonContainer
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/playPauseProgressButton"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:visibility="gone"
    tools:visibility="visible">

    <org.lineageos.eleven.widgets.PlayPauseButton
        android:id="@+id/action_button_play"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:background="@color/player_control_color"
        android:contentDescription="@string/accessibility_play"
        android:focusable="true"
        android:tint="@color/circular_play_pause_collapsed"
        android:scaleType="centerCrop"
        android:src="@drawable/btn_playback_play_collapsed" />

    <ProgressBar
        android:id="@+id/circularProgressBar"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clickable="false"
        android:indeterminate="false"
        android:max="100"
        android:progressTint="@color/white"
        android:progressBackgroundTint="@color/white"
        android:progress="100"
        android:progressDrawable="@drawable/circular_drawable" />

</org.lineageos.eleven.widgets.PlayPauseButtonContainer>