Skip to content

Commit

Permalink
update 0.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown authored and root committed Dec 20, 2021
1 parent 91e9dd8 commit b44f6a3
Show file tree
Hide file tree
Showing 18 changed files with 897 additions and 9 deletions.
11 changes: 7 additions & 4 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sleepchild.aupod22"
versionCode="012"
versionName="0.1.2">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
versionCode="014"
versionName="0.1.4">

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<uses-sdk
android:minSdkVersion="14"
Expand Down Expand Up @@ -43,6 +43,9 @@
<data android:mimeType="audio/*" />
</intent-filter>
</activity>
<activity
android:name=".TagEditorActivity"
android:launchMode="singleTop"></activity>

<service android:name=".AudioService"/>

Expand Down
Binary file added res/drawable/ic_chevron_left_white_24dp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable/ic_dots_vert_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable/ic_keyboard_arrow_left_black_24dp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable/ic_save_black_24dp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable/ic_save_white_24dp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/drawable/ic_settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable/icon_pencil.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
218 changes: 218 additions & 0 deletions res/layout/activity_auplayer.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,218 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/pluto">

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="40dp">

<LinearLayout
android:id="@+id/auplayer_btn_back"
android:onClick="onButton"
android:orientation="vertical"
android:layout_width="40dp"
android:layout_height="match_parent"
android:gravity="center">

<ImageView
android:clickable="false"
android:layout_width="26dp"
android:layout_height="26dp"
android:background="@drawable/ic_chevron_left_white_24dp"/>

</LinearLayout>

<LinearLayout
android:id="@+id/auplayer_btn_options"
android:onClick="onButton"
android:orientation="vertical"
android:layout_width="40dp"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:gravity="center">

<ImageView
android:clickable="false"
android:layout_width="22dp"
android:layout_height="22dp"
android:background="@drawable/ic_dots_vert_white"/>

</LinearLayout>

</RelativeLayout>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0">

<LinearLayout
android:id="@+id/aupalyer_iv_art2_background"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/fallback_cover"/>

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:alpha="0.7"/>

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/layout3LinearLayout1">

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:padding="20dp">

<ImageView
android:id="@+id/auplayer_iv_art"
android:src="@drawable/fallback_cover"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</LinearLayout>

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp">

<TextView
android:id="@+id/auplayer_tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="If I Were You"
android:background="#FFFFFF"
android:textColor="#000000"
android:textSize="20sp"
android:layout_marginBottom="4dp"
android:ellipsize="end"
android:singleLine="true"/>

<TextView
android:id="@+id/auplayer_tv_artist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Sirens"
android:textColor="#555555"
android:textSize="16sp"
android:background="#FFFFFF"
android:ellipsize="end"
android:singleLine="true"/>

</LinearLayout>

</LinearLayout>

</RelativeLayout>

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp">

<SeekBar
android:id="@+id/aupalyer_seeker"
android:layout_width="match_parent"
android:layout_height="18dp"/>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:id="@+id/auplayer_currentpos"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="00:00"
android:textColor="#FFFFFF"
android:textSize="14sp"/>

<TextView
android:id="@+id/auplayer_duration"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="00:00"
android:layout_alignParentRight="true"
android:textColor="#FFFFFF"
android:textSize="14sp"/>

</RelativeLayout>

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">

<LinearLayout
android:id="@+id/auplayer_btn_prev"
android:onClick="onButton"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dp">

<ImageView
android:clickable="false"
android:layout_width="34dp"
android:layout_height="34dp"
android:background="@drawable/ic_prev"/>

</LinearLayout>


<ImageButton
android:id="@+id/auplayer_btn_playpause"
android:onClick="onButton"
android:layout_width="100dp"
style="?android:attr/buttonBarButtonStyle"
android:layout_height="100dp"
android:src="@drawable/ic_play"
android:layout_marginRight="30dp"
android:layout_marginLeft="30dp"/>

<LinearLayout
android:id="@+id/auplayer_btn_next"
android:onClick="onButton"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dp">

<ImageView
android:clickable="false"
android:layout_width="34dp"
android:layout_height="34dp"
android:background="@drawable/ic_next"/>

</LinearLayout>

</LinearLayout>

</LinearLayout>

</LinearLayout>

</RelativeLayout>


Loading

0 comments on commit b44f6a3

Please sign in to comment.