toto
This commit is contained in:
parent
be39c90601
commit
60aa5a9c98
@ -1,9 +1,12 @@
|
||||
package com.amine.myterio.app;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.Configuration;
|
||||
import android.os.Bundle;
|
||||
import android.support.v7.app.AppCompatActivity;
|
||||
import android.view.Menu;
|
||||
import android.view.MenuItem;
|
||||
import android.widget.Toast;
|
||||
|
||||
|
||||
public class MainActivity extends AppCompatActivity {
|
||||
@ -12,6 +15,25 @@ public class MainActivity extends AppCompatActivity {
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_main);
|
||||
Toast.makeText(getApplicationContext(), getSizeName(this), Toast.LENGTH_LONG).show();
|
||||
}
|
||||
|
||||
private static String getSizeName(Context context) {
|
||||
int screenLayout = context.getResources().getConfiguration().screenLayout;
|
||||
screenLayout &= Configuration.SCREENLAYOUT_SIZE_MASK;
|
||||
|
||||
switch (screenLayout) {
|
||||
case Configuration.SCREENLAYOUT_SIZE_SMALL:
|
||||
return "small";
|
||||
case Configuration.SCREENLAYOUT_SIZE_NORMAL:
|
||||
return "normal";
|
||||
case Configuration.SCREENLAYOUT_SIZE_LARGE:
|
||||
return "large";
|
||||
case 4: // Configuration.SCREENLAYOUT_SIZE_XLARGE is API >= 9
|
||||
return "xlarge";
|
||||
default:
|
||||
return "undefined";
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -1,4 +1,4 @@
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
@ -12,4 +12,4 @@
|
||||
android:layout_weight="1"
|
||||
tools:layout="@layout/search_fragment"/>
|
||||
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
|
@ -11,7 +11,7 @@
|
||||
<SearchView
|
||||
android:id="@+id/searchView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="100dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentTop="true"/>
|
||||
|
@ -1,23 +1,15 @@
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.amine.myterio.app.SearchActivity">
|
||||
|
||||
<SearchView
|
||||
android:id="@+id/searchView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentTop="true"/>
|
||||
<fragment
|
||||
android:id="@+id/search_frag"
|
||||
android:name="com.amine.myterio.app.fragments.SearchFragment"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_weight="1"
|
||||
tools:layout="@layout/search_fragment"/>
|
||||
|
||||
<ListView
|
||||
android:id="@+id/listView2"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_below="@+id/searchView"/>
|
||||
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
|
27
app/src/main/res/layout/search_fragment.xml
Normal file
27
app/src/main/res/layout/search_fragment.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:paddingBottom="@dimen/activity_vertical_margin"
|
||||
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||
android:paddingRight="@dimen/activity_horizontal_margin"
|
||||
android:paddingTop="@dimen/activity_vertical_margin"
|
||||
tools:context="com.amine.myterio.app.SearchActivity">
|
||||
|
||||
<SearchView
|
||||
android:id="@+id/searchView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentTop="true"/>
|
||||
|
||||
<ListView
|
||||
android:id="@+id/listView2"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_below="@+id/searchView"/>
|
||||
|
||||
</RelativeLayout>
|
Loading…
Reference in New Issue
Block a user