Added padding for activities which doesnt want action bar overlay
This commit is contained in:
parent
2d448bc562
commit
a44ef3f35a
5 changed files with 13 additions and 7 deletions
|
@ -9,6 +9,7 @@
|
||||||
<LinearLayout android:id="@+id/loading"
|
<LinearLayout android:id="@+id/loading"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="@dimen/dashMapHeight"
|
android:layout_height="@dimen/dashMapHeight"
|
||||||
|
android:paddingTop="?attr/actionBarSize"
|
||||||
android:gravity="center_vertical|center_horizontal"
|
android:gravity="center_vertical|center_horizontal"
|
||||||
android:orientation="horizontal">
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
|
9
OsmAnd/res/layout/search_activity_single.xml
Normal file
9
OsmAnd/res/layout/search_activity_single.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:id="@+id/layout"
|
||||||
|
android:layout_marginTop="?attr/actionBarSize"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
</FrameLayout>
|
|
@ -1,6 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
|
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:id="@android:id/tabhost"
|
android:id="@android:id/tabhost"
|
||||||
|
android:layout_marginTop="?attr/actionBarSize"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
|
|
@ -71,9 +71,7 @@ public class FavouritesActivity extends ActionBarActivity {
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!hasGpx) {
|
if(!hasGpx) {
|
||||||
FrameLayout fl = new FrameLayout(this);
|
setContentView(R.layout.search_activity_single);
|
||||||
fl.setId(R.id.layout);
|
|
||||||
setContentView(fl);
|
|
||||||
getSupportFragmentManager().beginTransaction().add(R.id.layout, new FavouritesTreeFragment()).commit();
|
getSupportFragmentManager().beginTransaction().add(R.id.layout, new FavouritesTreeFragment()).commit();
|
||||||
} else {
|
} else {
|
||||||
setContentView(R.layout.tab_content);
|
setContentView(R.layout.tab_content);
|
||||||
|
|
|
@ -100,7 +100,6 @@ public class SearchActivity extends ActionBarActivity implements OsmAndLocationL
|
||||||
((OsmandApplication) getApplication()).applyTheme(this);
|
((OsmandApplication) getApplication()).applyTheme(this);
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
long t = System.currentTimeMillis();
|
long t = System.currentTimeMillis();
|
||||||
//getSherlock().setUiOptions(ActivityInfo.UIOPTION_SPLIT_ACTION_BAR_WHEN_NARROW);
|
|
||||||
getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
|
getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
|
||||||
setContentView(R.layout.search_main);
|
setContentView(R.layout.search_main);
|
||||||
settings = ((OsmandApplication) getApplication()).getSettings();
|
settings = ((OsmandApplication) getApplication()).getSettings();
|
||||||
|
@ -142,9 +141,7 @@ public class SearchActivity extends ActionBarActivity implements OsmAndLocationL
|
||||||
mTabsAdapter.addTab(transportTab, getFragment(TRANSPORT_TAB_INDEX), null);
|
mTabsAdapter.addTab(transportTab, getFragment(TRANSPORT_TAB_INDEX), null);
|
||||||
tabHost.setCurrentTab(tab);
|
tabHost.setCurrentTab(tab);
|
||||||
} else {
|
} else {
|
||||||
FrameLayout fl = new FrameLayout(this);
|
setContentView(R.layout.search_activity_single);
|
||||||
fl.setId(R.id.layout);
|
|
||||||
setContentView(fl);
|
|
||||||
Class<?> cl = getFragment(tab);
|
Class<?> cl = getFragment(tab);
|
||||||
try {
|
try {
|
||||||
getSupportFragmentManager().beginTransaction().replace(R.id.layout, (Fragment) cl.newInstance()).commit();
|
getSupportFragmentManager().beginTransaction().replace(R.id.layout, (Fragment) cl.newInstance()).commit();
|
||||||
|
|
Loading…
Reference in a new issue