aboutsummaryrefslogtreecommitdiffstats
path: root/libs/audiowife/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to 'libs/audiowife/src/main/res')
-rw-r--r--libs/audiowife/src/main/res/drawable-mdpi/ic_launcher.pngbin4567 -> 0 bytes
-rw-r--r--libs/audiowife/src/main/res/drawable-xhdpi/ic_launcher.pngbin12354 -> 0 bytes
-rw-r--r--libs/audiowife/src/main/res/drawable-xxhdpi/ic_launcher.pngbin18552 -> 0 bytes
-rw-r--r--libs/audiowife/src/main/res/drawable/gray_border_wo_padding.xml14
-rw-r--r--libs/audiowife/src/main/res/layout/aw_player.xml49
-rw-r--r--libs/audiowife/src/main/res/values/strings.xml5
-rw-r--r--libs/audiowife/src/main/res/values/styles.xml20
7 files changed, 0 insertions, 88 deletions
diff --git a/libs/audiowife/src/main/res/drawable-mdpi/ic_launcher.png b/libs/audiowife/src/main/res/drawable-mdpi/ic_launcher.png
deleted file mode 100644
index 6fe8b2b68..000000000
--- a/libs/audiowife/src/main/res/drawable-mdpi/ic_launcher.png
+++ /dev/null
Binary files differ
diff --git a/libs/audiowife/src/main/res/drawable-xhdpi/ic_launcher.png b/libs/audiowife/src/main/res/drawable-xhdpi/ic_launcher.png
deleted file mode 100644
index 75e7d9cc5..000000000
--- a/libs/audiowife/src/main/res/drawable-xhdpi/ic_launcher.png
+++ /dev/null
Binary files differ
diff --git a/libs/audiowife/src/main/res/drawable-xxhdpi/ic_launcher.png b/libs/audiowife/src/main/res/drawable-xxhdpi/ic_launcher.png
deleted file mode 100644
index 057581d8a..000000000
--- a/libs/audiowife/src/main/res/drawable-xxhdpi/ic_launcher.png
+++ /dev/null
Binary files differ
diff --git a/libs/audiowife/src/main/res/drawable/gray_border_wo_padding.xml b/libs/audiowife/src/main/res/drawable/gray_border_wo_padding.xml
deleted file mode 100644
index 890aadcbf..000000000
--- a/libs/audiowife/src/main/res/drawable/gray_border_wo_padding.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<shape xmlns:android="http://schemas.android.com/apk/res/android">
-
-
- <!-- view border color and width -->
- <stroke
- android:width="1dp"
- android:color="#F2F2F2"></stroke>
-
- <gradient
- android:endColor="@android:color/white"
- android:startColor="@android:color/white" />
-
-</shape> \ No newline at end of file
diff --git a/libs/audiowife/src/main/res/layout/aw_player.xml b/libs/audiowife/src/main/res/layout/aw_player.xml
deleted file mode 100644
index f3e061381..000000000
--- a/libs/audiowife/src/main/res/layout/aw_player.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/player_layout"
- android:layout_width="match_parent"
- android:layout_height="70dp"
- android:gravity="center_vertical"
- android:paddingLeft="4dp">
-
- <ImageView
- android:id="@+id/play"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="6"
- android:src="@android:drawable/ic_media_play" />
-
- <ImageView
- android:id="@+id/pause"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="6"
- android:src="@android:drawable/ic_media_pause"
- android:visibility="gone" />
-
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_weight="0.8"
- android:paddingBottom="5dp"
- android:paddingRight="10dp"
- android:paddingTop="5dp">
-
- <SeekBar
- android:id="@+id/media_seekbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical" />
-
- <TextView
- android:id="@+id/playback_time"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="right|top"
- android:ellipsize="end"
- android:inputType="text"
- android:textColor="@android:color/darker_gray"
- android:textSize="11sp" />
- </FrameLayout>
-
-</LinearLayout> \ No newline at end of file
diff --git a/libs/audiowife/src/main/res/values/strings.xml b/libs/audiowife/src/main/res/values/strings.xml
deleted file mode 100644
index 66966868f..000000000
--- a/libs/audiowife/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<resources>
-
- <string name="app_name">LibAudioWife</string>
-
-</resources>
diff --git a/libs/audiowife/src/main/res/values/styles.xml b/libs/audiowife/src/main/res/values/styles.xml
deleted file mode 100644
index 6ce89c7ba..000000000
--- a/libs/audiowife/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<resources>
-
- <!--
- Base application theme, dependent on API level. This theme is replaced
- by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
- -->
- <style name="AppBaseTheme" parent="android:Theme.Light">
- <!--
- Theme customizations available in newer API levels can go in
- res/values-vXX/styles.xml, while customizations related to
- backward-compatibility can go here.
- -->
- </style>
-
- <!-- Application theme. -->
- <style name="AppTheme" parent="AppBaseTheme">
- <!-- All customizations that are NOT specific to a particular API-level can go here. -->
- </style>
-
-</resources>