diff options
author | lado <herrlado@gmail.com> | 2012-07-03 09:40:41 +0200 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2012-07-03 09:40:41 +0200 |
commit | 5f0f48a5562efcfba3c4c17dc60f71dff4c494a6 (patch) | |
tree | 2bbdcb97af0b4812586ce8165ade4a754804470f /vdrmanager | |
parent | 7fc36c82f4ea4f5bac45f44d59766a13bb7ac2cc (diff) | |
download | vdr-manager-5f0f48a5562efcfba3c4c17dc60f71dff4c494a6.tar.gz vdr-manager-5f0f48a5562efcfba3c4c17dc60f71dff4c494a6.tar.bz2 |
backupv5.1
Diffstat (limited to 'vdrmanager')
-rw-r--r-- | vdrmanager/AndroidManifest.xml | 4 | ||||
-rw-r--r-- | vdrmanager/res/layout/epg_detail.xml | 151 |
2 files changed, 66 insertions, 89 deletions
diff --git a/vdrmanager/AndroidManifest.xml b/vdrmanager/AndroidManifest.xml index 13377ad..469ac89 100644 --- a/vdrmanager/AndroidManifest.xml +++ b/vdrmanager/AndroidManifest.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="de.bjusystems.vdrmanager" android:versionName="0.5.0" - android:versionCode="500"> + package="de.bjusystems.vdrmanager" android:versionName="0.5.1" + android:versionCode="510"> diff --git a/vdrmanager/res/layout/epg_detail.xml b/vdrmanager/res/layout/epg_detail.xml index a564c15..40dcec0 100644 --- a/vdrmanager/res/layout/epg_detail.xml +++ b/vdrmanager/res/layout/epg_detail.xml @@ -111,95 +111,72 @@ android:layout_width="fill_parent" android:layout_height="4sp" /> - <HorizontalScrollView - android:layout_width="fill_parent" - android:layout_height="wrap_content" > - - <TableLayout android:layout_weight="1" - android:id="@+id/root" - style="@android:style/ButtonBar" - android:layout_width="fill_parent" + <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:id="@+id/root" + android:stretchColumns="*" + style="@android:style/ButtonBar"> + + <TableRow android:layout_margin="0dip" + android:id="@+id/first_row"> + <ImageButton + android:id="@+id/epg_event_livetv" + style="?android:attr/buttonStyleSmall" + android:layout_width="0dip" + android:layout_height="wrap_content" + android:layout_centerHorizontal="true" + android:layout_gravity="center_horizontal" + android:layout_weight="1" + android:background="@android:drawable/list_selector_background" + android:src="@drawable/tv" + android:text="@string/epg_eent_livetv_text" /> + + <ImageButton + android:id="@+id/epg_event_imdb" + style="?android:attr/buttonStyleSmall" + android:layout_width="0dip" + android:layout_height="wrap_content" + android:layout_weight="1" + android:background="@android:drawable/list_selector_background" + android:src="@drawable/imdb" + android:text="@string/epg_event_imdb_text" /> + + <ImageButton + android:id="@+id/epg_event_omdb" + style="?android:attr/buttonStyleSmall" + android:layout_width="0dip" android:layout_height="wrap_content" - android:stretchColumns="*" > - - <TableRow android:layout_weight="1" - android:id="@+id/first_row" - android:layout_margin="0dip" > - - <ImageButton - android:id="@+id/epg_event_livetv" - style="?android:attr/buttonStyleSmall" - android:layout_width="0dip" - android:layout_height="wrap_content" - android:layout_centerHorizontal="true" - android:layout_gravity="center_horizontal" - android:layout_weight="1" - android:background="@android:drawable/list_selector_background" - android:src="@drawable/tv" - android:text="@string/epg_eent_livetv_text" /> - - <ImageButton - android:id="@+id/epg_event_imdb" - style="?android:attr/buttonStyleSmall" - android:layout_width="0dip" - android:layout_height="wrap_content" - android:layout_weight="1" - android:layout_centerHorizontal="true" - android:layout_gravity="center_horizontal" - android:background="@android:drawable/list_selector_background" - android:src="@drawable/imdb" - android:text="@string/epg_event_imdb_text" /> - - <ImageButton - android:id="@+id/epg_event_omdb" - style="?android:attr/buttonStyleSmall" - android:layout_width="0dip" - android:layout_height="wrap_content" - android:layout_weight="1" - android:background="@android:drawable/list_selector_background" - android:layout_centerHorizontal="true" - android:layout_gravity="center_horizontal" - android:src="@drawable/omdb" - android:text="@string/epg_event_omdb_text" /> - - <ImageButton - android:id="@+id/epg_event_tmdb" - style="?android:attr/buttonStyleSmall" - android:layout_width="0dip" - android:layout_height="wrap_content" - android:layout_weight="1" - android:background="@android:drawable/list_selector_background" - android:src="@drawable/tmdb" - android:layout_centerHorizontal="true" - android:layout_gravity="center_horizontal" - android:text="@string/epg_event_tmdb_text" /> -<!-- - <ImageButton - android:id="@+id/epg_event_switch" - style="?android:attr/buttonStyleSmall" - android:layout_width="0dip" - android:layout_height="wrap_content" - android:layout_weight="1" - android:layout_centerHorizontal="true" - android:layout_gravity="center_horizontal" - android:background="@android:drawable/list_selector_background" - android:src="@drawable/switchto" - android:text="@string/switch_to_channel" /> ---> - <ImageButton - android:id="@+id/epg_event_create_timer" - style="?android:attr/buttonStyleSmall" - android:layout_width="0dip" - android:layout_height="wrap_content" - android:layout_centerHorizontal="true" - android:layout_gravity="center_horizontal" - android:layout_weight="1" - android:background="@android:drawable/list_selector_background" - android:src="@drawable/timer" - android:text="@string/epg_event_create_timer_text" /> - </TableRow> + android:layout_weight="1" + android:background="@android:drawable/list_selector_background" + android:src="@drawable/omdb" + android:text="@string/epg_event_omdb_text" /> + + + <ImageButton + android:id="@+id/epg_event_tmdb" + style="?android:attr/buttonStyleSmall" + android:layout_width="0dip" + android:layout_height="wrap_content" + android:layout_weight="1" + android:background="@android:drawable/list_selector_background" + android:src="@drawable/tmdb" + android:text="@string/epg_event_tmdb_text" /> + + <ImageButton + android:id="@+id/epg_event_create_timer" + style="?android:attr/buttonStyleSmall" + android:layout_width="0dip" + android:layout_height="wrap_content" + android:layout_centerHorizontal="true" + android:layout_gravity="center_horizontal" + android:layout_weight="1" + android:background="@android:drawable/list_selector_background" + android:src="@drawable/timer" + android:text="@string/epg_event_create_timer_text" /> + +</TableRow> </TableLayout> - </HorizontalScrollView> <!-- <ImageButton android:id="@+id/epg_event_share" |