Skip to content

Commit

Permalink
update-20220113
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepchild committed Jan 13, 2022
1 parent 7665819 commit 12f0d76
Show file tree
Hide file tree
Showing 100 changed files with 5,317 additions and 0 deletions.
60 changes: 60 additions & 0 deletions aupod/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sleepchild.aupod22"
android:versionCode="20220111"
android:versionName="20220111">

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

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="21" />

<application
android:name=".App"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:launchMode="singleTop">
<activity android:name=".activity.MainActivity"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.PlayerActivity"
android:launchMode="singleTop"></activity>
<activity
android:name=".activity.SettingsActivity"
android:launchMode="singleTop"/>
<activity
android:name=".activity.IntentActivity"
android:theme="@style/ClearBack"
android:launchMode="singleTop"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:mimeType="audio/*" />
</intent-filter>
</activity>
<activity
android:name=".activity.TagEditorActivity"
android:launchMode="singleTop"></activity>

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

<receiver
android:name=".recievers.ButtonReciever">
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>
</receiver>
</application>

</manifest>
Binary file added aupod/libs/mp3agic-0.8.1.jar
Binary file not shown.
Binary file added aupod/res/drawable/fallback_cover.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 aupod/res/drawable/ic_dashboard_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 aupod/res/drawable/ic_format_paint_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 aupod/res/drawable/ic_headset_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.
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 aupod/res/drawable/ic_launcher.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 aupod/res/drawable/ic_launcher2.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 aupod/res/drawable/ic_more_vert_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 aupod/res/drawable/ic_next.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 aupod/res/drawable/ic_next_24px.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 aupod/res/drawable/ic_pause.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 aupod/res/drawable/ic_pause_24px.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 aupod/res/drawable/ic_play.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 aupod/res/drawable/ic_play_24px.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 aupod/res/drawable/ic_prev.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 aupod/res/drawable/ic_prev_24px.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 aupod/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 added aupod/res/drawable/ic_search_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 aupod/res/drawable/ic_search_white_moss.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 aupod/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 aupod/res/drawable/ic_settings_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.
11 changes: 11 additions & 0 deletions aupod/res/drawable/scrollbar_v_thumb.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<gradient
android:angle="0"
android:endColor="#FF6600"
android:startColor="#FF6600" />

<corners android:radius="4dp"/>


</shape>
8 changes: 8 additions & 0 deletions aupod/res/drawable/scrollbar_v_track.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<gradient
android:angle="0"
android:endColor="#FFFFFF"
android:startColor="#FFFFFF" />
<corners android:radius="4dp" />
</shape>
218 changes: 218 additions & 0 deletions aupod/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"?>
<sleepchild.view.ContainerLayout
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">

<sleepchild.view.TintedImageView
android:clickable="false"
android:layout_width="26dp"
android:layout_height="26dp"
android:background="@drawable/ic_keyboard_arrow_left_black_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">

<sleepchild.view.TintedImageView
android:clickable="false"
android:layout_width="22dp"
android:layout_height="22dp"
android:background="@drawable/ic_more_vert_black_24dp"/>

</LinearLayout>

</RelativeLayout>

<RelativeLayout
android:tag="artback"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
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="#00000000"
android:alpha="0.3"/>

<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="@color/pluto"
android:textColor="@color/text"
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="@color/text"
android:textSize="16sp"
android:background="@color/pluto"
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="@color/text"
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="@color/text"
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">

<sleepchild.view.TintedImageView
android:clickable="false"
android:layout_width="34dp"
android:layout_height="34dp"
android:background="@drawable/ic_prev"/>

</LinearLayout>


<sleepchild.view.TintedImageView
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">

<sleepchild.view.TintedImageView
android:clickable="false"
android:layout_width="34dp"
android:layout_height="34dp"
android:background="@drawable/ic_next"/>

</LinearLayout>

</LinearLayout>

</LinearLayout>

</LinearLayout>

</sleepchild.view.ContainerLayout>
Loading

0 comments on commit 12f0d76

Please sign in to comment.