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 = boolean copySavedConfiguration = savedConfiguration =
savedInstanceState != null && savedInstanceState.getBoolean(AppConstants.SAVED_CONFIG_KEY); savedInstanceState != null && savedInstanceState.getBoolean(AppConstants.SAVED_CONFIG_KEY);
String deviceType = getResources().getString(R.string.device_type);
if ("Plain".equals(deviceType)) {
switchFragment(); switchFragment();
updateSwipeHandler(); updateSwipeHandler();
}
if (!copySavedConfiguration && HelperUtils.checkForLocalicatonEnabled(this)) return; if (!copySavedConfiguration && HelperUtils.checkForLocalicatonEnabled(this)) return;
} }

View File

@ -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"

View File

@ -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>

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>