summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/layout/mediaplayer_activity.xml17
-rw-r--r--res/values/strings.xml6
2 files changed, 18 insertions, 5 deletions
diff --git a/res/layout/mediaplayer_activity.xml b/res/layout/mediaplayer_activity.xml
index b5b4d0a58..d6ee82733 100644
--- a/res/layout/mediaplayer_activity.xml
+++ b/res/layout/mediaplayer_activity.xml
@@ -6,7 +6,7 @@
android:orientation="vertical" >
<ImageView
- android:id="@+id/imageView1"
+ android:id="@+id/imgvCover"
android:layout_width="match_parent"
android:layout_height="283dp"
android:layout_weight="0.02"
@@ -18,24 +18,33 @@
android:layout_height="wrap_content" >
<TextView
- android:id="@+id/textView3"
+ android:id="@+id/txtvPosition"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="left" />
<TextView
- android:id="@+id/textView4"
+ android:id="@+id/txtvLength"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="right" />
+ <TextView
+ android:id="@+id/txtvStatus"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentTop="true"
+ android:layout_centerHorizontal="true"
+ android:text="TextView"
+ android:visibility="invisible" />
+
</RelativeLayout>
<SeekBar
- android:id="@+id/seekBar1"
+ android:id="@+id/sbPosition"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
diff --git a/res/values/strings.xml b/res/values/strings.xml
index f59baec12..092b376f2 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -30,5 +30,9 @@
<!-- other messages -->
<string name="nofeeds_msg">No feeds added yet.</string>
-
+ <!-- Mediaplayer status Messages -->
+ <string name="player_paused_msg">Paused</string>
+ <string name="player_error_msg">Error!</string>
+ <string name="player_stopped_msg">Stopped</string>
+ <string name="player_preparing_msg">Preparing...</string>
</resources>