First attempts to make better layout for tablets (for big tablets - home page layout changed partially).

master
Tomasz Półgrabia 2016-10-23 18:16:06 +02:00
parent c120b35220
commit 12621d5067
6 changed files with 35 additions and 18 deletions

View File

@ -123,8 +123,11 @@ public class MainActivity extends ActionBarActivity {
boolean copySavedConfiguration = savedConfiguration =
savedInstanceState != null && savedInstanceState.getBoolean(AppConstants.SAVED_CONFIG_KEY);
switchFragment();
updateSwipeHandler();
String deviceType = getResources().getString(R.string.device_type);
if ("Plain".equals(deviceType)) {
switchFragment();
updateSwipeHandler();
}
if (!copySavedConfiguration && HelperUtils.checkForLocalicatonEnabled(this)) return;
}

View File

@ -2,6 +2,7 @@
<pl.tpolgrabia.urbanexplorer.views.SwipeFrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragments"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"

View File

@ -2,6 +2,7 @@
<pl.tpolgrabia.urbanexplorer.views.SwipeFrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragments"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
@ -13,26 +14,26 @@
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout android:id="@+id/frag_container1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<fragment android:name="pl.tpolgrabia.urbanexplorer.fragments.PlacesFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
</FrameLayout>
</fragment>
<FrameLayout android:id="@+id/frag_container2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<fragment android:name="pl.tpolgrabia.urbanexplorer.fragments.WikiLocationsFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
</FrameLayout>
</fragment>
<fragment android:name="pl.tpolgrabia.urbanexplorer.fragments.HomeFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<FrameLayout android:id="@+id/frag_container3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
</FrameLayout>
</fragment>
</LinearLayout>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="device_type">600</string>
</resources>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="device_type">720</string>
</resources>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="device_type">Plain</string>
</resources>