First attempts to make better layout for tablets (for big tablets - home page layout changed partially).
parent
c120b35220
commit
12621d5067
|
@ -123,8 +123,11 @@ public class MainActivity extends ActionBarActivity {
|
||||||
boolean copySavedConfiguration = savedConfiguration =
|
boolean copySavedConfiguration = savedConfiguration =
|
||||||
savedInstanceState != null && savedInstanceState.getBoolean(AppConstants.SAVED_CONFIG_KEY);
|
savedInstanceState != null && savedInstanceState.getBoolean(AppConstants.SAVED_CONFIG_KEY);
|
||||||
|
|
||||||
switchFragment();
|
String deviceType = getResources().getString(R.string.device_type);
|
||||||
updateSwipeHandler();
|
if ("Plain".equals(deviceType)) {
|
||||||
|
switchFragment();
|
||||||
|
updateSwipeHandler();
|
||||||
|
}
|
||||||
if (!copySavedConfiguration && HelperUtils.checkForLocalicatonEnabled(this)) return;
|
if (!copySavedConfiguration && HelperUtils.checkForLocalicatonEnabled(this)) return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
<pl.tpolgrabia.urbanexplorer.views.SwipeFrameLayout
|
<pl.tpolgrabia.urbanexplorer.views.SwipeFrameLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:id="@+id/fragments"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
@ -2,6 +2,7 @@
|
||||||
<pl.tpolgrabia.urbanexplorer.views.SwipeFrameLayout
|
<pl.tpolgrabia.urbanexplorer.views.SwipeFrameLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:id="@+id/fragments"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||||
|
@ -13,26 +14,26 @@
|
||||||
<LinearLayout android:layout_width="match_parent"
|
<LinearLayout android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<FrameLayout android:id="@+id/frag_container1"
|
<fragment android:name="pl.tpolgrabia.urbanexplorer.fragments.PlacesFragment"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_weight="1">
|
android:layout_weight="1">
|
||||||
|
|
||||||
</FrameLayout>
|
</fragment>
|
||||||
|
|
||||||
<FrameLayout android:id="@+id/frag_container2"
|
<fragment android:name="pl.tpolgrabia.urbanexplorer.fragments.WikiLocationsFragment"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_weight="1">
|
android:layout_weight="1">
|
||||||
|
|
||||||
</FrameLayout>
|
</fragment>
|
||||||
|
|
||||||
<FrameLayout android:id="@+id/frag_container3"
|
<fragment android:name="pl.tpolgrabia.urbanexplorer.fragments.HomeFragment"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_weight="1">
|
android:layout_weight="1">
|
||||||
|
|
||||||
</FrameLayout>
|
</fragment>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="device_type">600</string>
|
||||||
|
</resources>
|
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="device_type">720</string>
|
||||||
|
</resources>
|
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="device_type">Plain</string>
|
||||||
|
</resources>
|
Loading…
Reference in New Issue