Improved mediaplayer portrait layout

This commit is contained in:
daniel oeh 2012-06-27 20:38:55 +02:00
parent 821dad45d2
commit 3931244c35
2 changed files with 92 additions and 64 deletions

View File

@ -1,74 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ViewSwitcher
android:id="@+id/viewswitcher"
android:layout_width="match_parent"
android:layout_height="283dp"
android:layout_weight="0.02" >
<ImageView
android:id="@+id/imgvCover"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/navigation_cancel" />
<VideoView
android:id="@+id/videoview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</ViewSwitcher>
<RelativeLayout
android:id="@+id/playtime_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/txtvPosition"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="@string/position_default_label" />
<TextView
android:id="@+id/txtvLength"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="@string/position_default_label" />
<TextView
android:id="@+id/txtvStatus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:visibility="invisible" />
</RelativeLayout>
<SeekBar
android:id="@+id/sbPosition"
<TextView
android:id="@+id/txtvTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="500" />
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:scaleType="fitXY"
android:src="@drawable/horizontal_divider" />
android:layout_alignParentTop="true"
android:layout_marginTop="20dp"
android:gravity="center_horizontal"
android:textSize="18dp"
android:textStyle="bold" >
</TextView>
<LinearLayout
android:id="@+id/player_control"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.015" >
android:layout_height="80dp"
android:layout_alignParentBottom="true" >
<ImageButton
android:id="@+id/butRev"
@ -107,11 +58,84 @@
android:src="@android:drawable/ic_media_ff" />
</LinearLayout>
<SeekBar
android:id="@+id/sbPosition"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/player_control"
android:layout_alignParentLeft="true"
android:max="500" />
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/sbPosition"
android:padding="5dp"
android:scaleType="fitXY"
android:src="@drawable/horizontal_divider" />
android:src="@drawable/horizontal_divider" android:layout_marginBottom="5dp" android:layout_marginTop="5dp"/>
</LinearLayout>
<RelativeLayout
android:id="@+id/playtime_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/sbPosition"
android:layout_alignParentLeft="true" >
<TextView
android:id="@+id/txtvPosition"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="@string/position_default_label" />
<TextView
android:id="@+id/txtvLength"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="@string/position_default_label" />
<TextView
android:id="@+id/txtvStatus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:visibility="invisible" />
</RelativeLayout>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:padding="5dp"
android:scaleType="fitXY"
android:src="@drawable/horizontal_divider" android:layout_marginTop="5dp" android:layout_marginBottom="5dp"/>
<TextView
android:id="@+id/txtvFeed"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/txtvTitle"
android:gravity="center_horizontal"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_above="@id/playtime_layout"
android:layout_below="@id/txtvFeed" >
<ImageView
android:id="@+id/imgvCover"
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_gravity="center"
android:layout_weight="1"
android:gravity="center" />
</LinearLayout>
</RelativeLayout>

View File

@ -57,7 +57,8 @@ public class MediaplayerActivity extends SherlockActivity implements
private FeedManager manager;
// Widgets
private ViewSwitcher viewswitcher;
private TextView txtvTitle;
private TextView txtvFeed;
private ImageView imgvCover;
private VideoView videoview;
private TextView txtvStatus;
@ -268,6 +269,8 @@ public class MediaplayerActivity extends SherlockActivity implements
media.getItem().getFeed().getTitle());
imgvCover.setImageBitmap(media.getItem().getFeed().getImage()
.getImageBitmap());
txtvTitle.setText(media.getItem().getTitle());
txtvFeed.setText(media.getItem().getFeed().getTitle());
}
txtvPosition.setText(Converter.getDurationStringLong((player
@ -283,7 +286,6 @@ public class MediaplayerActivity extends SherlockActivity implements
}
private void setupGUI() {
viewswitcher = (ViewSwitcher) findViewById(R.id.viewswitcher);
sbPosition = (SeekBar) findViewById(R.id.sbPosition);
txtvPosition = (TextView) findViewById(R.id.txtvPosition);
txtvLength = (TextView) findViewById(R.id.txtvLength);
@ -326,6 +328,8 @@ public class MediaplayerActivity extends SherlockActivity implements
butPlay = (ImageButton) findViewById(R.id.butPlay);
butRev = (ImageButton) findViewById(R.id.butRev);
butFF = (ImageButton) findViewById(R.id.butFF);
txtvTitle = (TextView) findViewById(R.id.txtvTitle);
txtvFeed = (TextView) findViewById(R.id.txtvFeed);
butPlay.setOnClickListener(playbuttonListener);