diff --git a/res/layout/activity_holder.xml b/res/layout/activity_holder.xml index 872c1128bbc9c02d8d9286bced5b7e6e108281b4..7700b733a176e26ded5605095fd15d87178e8c01 100644 --- a/res/layout/activity_holder.xml +++ b/res/layout/activity_holder.xml @@ -3,6 +3,7 @@ android:id="@+id/frag_container" android:layout_width="match_parent" android:layout_height="match_parent" - tools:context=".ActivityHolder" > + tools:context=".ActivityHolder" + android:background="@drawable/bg_72" > </FrameLayout> \ No newline at end of file diff --git a/res/layout/activity_sflphone_home.xml b/res/layout/activity_sflphone_home.xml index d84349ce96e16f920d01edf43cc4cf1e3fe6f778..946c05bed12be9781bfa42c0e91fb233989ae1da 100644 --- a/res/layout/activity_sflphone_home.xml +++ b/res/layout/activity_sflphone_home.xml @@ -34,8 +34,7 @@ as that of the covered work. xmlns:app="http://schemas.android.com/apk/res/org.sflphone" android:id="@+id/drawer_layout" android:layout_width="match_parent" - android:layout_height="match_parent" - android:background="@color/sfl_dark_blue" > + android:layout_height="match_parent" > <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" @@ -44,6 +43,12 @@ as that of the covered work. android:layout_height="match_parent" android:orientation="vertical" > + <ImageView + android:layout_width="match_parent" + android:layout_height="?android:attr/actionBarSize" + android:layout_alignParentTop="true" + android:background="@color/sfl_dark_blue" /> + <org.sflphone.views.PagerSlidingTabStrip android:id="@+id/pts_main" android:layout_width="match_parent" @@ -59,7 +64,6 @@ as that of the covered work. android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@+id/pts_main" - android:background="@drawable/bg_72" android:paddingBottom="@dimen/contact_drawer_handle_height" /> <ImageView diff --git a/res/layout/frag_about.xml b/res/layout/frag_about.xml index 95d45b2fa298cca7284f1eab19ba150ddebda66d..d0720de0068c792322eba588ef630ab53957cdbd 100644 --- a/res/layout/frag_about.xml +++ b/res/layout/frag_about.xml @@ -7,7 +7,6 @@ <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_gravity="center" android:orientation="vertical" > <ImageView diff --git a/res/layout/frag_dialing.xml b/res/layout/frag_dialing.xml index 1d69463d174d0293c890d191f85fd9e4b427c516..327dd9bee603371f0e53a91d81851e3b8a85778c 100644 --- a/res/layout/frag_dialing.xml +++ b/res/layout/frag_dialing.xml @@ -1,17 +1,16 @@ <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginLeft="15dp" - android:layout_marginRight="15dp" - android:layout_marginTop="15dp" - android:padding="5dp" > + android:layout_height="wrap_content" > <org.sflphone.views.ClearableEditText android:id="@+id/textField" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_alignParentTop="true" /> + android:layout_alignParentTop="true" + android:layout_marginLeft="10dp" + android:layout_marginRight="10dp" + android:layout_marginTop="10dp" /> <RelativeLayout android:layout_width="match_parent" diff --git a/res/values-v14/styles.xml b/res/values-v14/styles.xml index 51be5e0d67505f2548cac179a72e0c585bd8e41a..ae4cf74918bc6631d5e6562822335a792d8d392c 100644 --- a/res/values-v14/styles.xml +++ b/res/values-v14/styles.xml @@ -4,8 +4,9 @@ <item name="android:actionBarStyle">@style/MyActionBar</item> <item name="android:actionMenuTextAppearance">@style/MyActionBar.MenuTextStyle</item> <item name="android:windowActionBarOverlay">true</item> + <item name="android:windowBackground">@drawable/bg_72</item> </style> - + <style name="AppThemeWithoutOverlay" parent="android:Theme.Holo.Light"> <item name="android:actionBarStyle">@style/MyActionBar</item> <item name="android:actionMenuTextAppearance">@style/MyActionBar.MenuTextStyle</item> diff --git a/res/values/styles.xml b/res/values/styles.xml index 2cc23c5c7937d28372af636d9d1a078cb0360bcd..7bab26fae3c1adc74e5b543bfecdfb6d36be448b 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -32,7 +32,9 @@ as that of the covered work. <resources> - <style name="AppTheme" parent="android:Theme.Light" /> + <style name="AppTheme" parent="android:Theme.Light" > + <item name="android:background">@drawable/bg_72</item> + </style> <style name="AccountFormContainer"> <item name="android:layout_width">match_parent</item> diff --git a/src/org/sflphone/fragments/MenuFragment.java b/src/org/sflphone/fragments/MenuFragment.java index 00d729d251a84e8d905972d83ade474cf7ad6072..b2aceed4bbff953a6989a4676c6047c3aa5ef30a 100644 --- a/src/org/sflphone/fragments/MenuFragment.java +++ b/src/org/sflphone/fragments/MenuFragment.java @@ -125,17 +125,6 @@ public class MenuFragment extends Fragment implements LoaderCallbacks<Bundle>, A mAdapter = new MenuAdapter(getActivity()); accountReceiver = new AccountsReceiver(this); - - String[] categories = getResources().getStringArray(R.array.menu_categories); - // ArrayAdapter<String> paramAdapter = new ArrayAdapter<String>(getActivity(), R.layout.item_menu, getResources().getStringArray( - // R.array.menu_items_param)); - // ArrayAdapter<String> helpAdapter = new ArrayAdapter<String>(getActivity(), R.layout.item_menu, getResources().getStringArray( - // R.array.menu_items_help)); - - // Add Sections - // mAdapter.addSection(categories[0], paramAdapter); - // mAdapter.addSection(categories[1], helpAdapter); - } public void onResume() {