Android:使用包含其他布局的布局调整应用到小屏幕

时间:2016-07-19 09:53:11

标签: java android xml android-layout screen-size

我使用"布局"中的所有xml布局完成了我的应用程序文件夹,由普通大小的屏幕使用。所以现在我开始使用小屏幕并创建一个名为" layout-small"在#34;布局"文件夹在" res"。

我在较小的布局中使用较小的按钮和边距进行了一些修改,然后尝试在普通屏幕和小屏幕上运行它以查看每个屏幕是否将使用它应该的布局,但两者都使用正常布局。小屏幕不使用小布局。

我认为这是因为使用setContent()方法的Java类使用的布局又包含另一个布局,该布局还包括第三个布局。

这是我的代码,以便更清晰。 3个activity_main.xml app_bar_main.xml和content_main.xml布局文件也在res / layout和res / layout-small中,只有content_main.xml中的按钮大小不同。

Home.java:

public class Home extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener {

/**fields*/
private Button butVentes, butLocations, butRecherche, butFavoris, butContact, butSocial;   //Buttons for home screen
private Toolbar toolbar;
private DrawerLayout drawer;
private NavigationView navigationView;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().setFormat(PixelFormat.RGBA_8888);
    setContentView(R.layout.activity_main);

    /**toolbar*/
    toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    /**drawer*/
    drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
    ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
    drawer.addDrawerListener(toggle);
    toggle.syncState();

    /**navigationView*/
    navigationView = (NavigationView) findViewById(R.id.nav_view);
    navigationView.setNavigationItemSelectedListener(this);
}

/*...*/

}

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include
    layout="@layout/app_bar_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<android.support.design.widget.NavigationView
    android:id="@+id/nav_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="true"
    app:headerLayout="@layout/nav_header_main"
    app:menu="@menu/activity_main_drawer" />

app_bar_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivities.Home">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_main" />

content_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/home_background_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/app_accueil_background"
android:orientation="horizontal"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivities.Home"
tools:showIn="@layout/app_bar_main">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center|bottom"
    android:layout_marginBottom="40dp"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="240dp"
        android:orientation="horizontal">

        <Button
            android:id="@+id/buttonVentes"
            android:layout_width="60dp"
            android:layout_height="48dp"
            android:layout_marginRight="5dp"
            android:background="@drawable/circle"
            android:drawableTop="@drawable/ic_view_list"
            android:paddingTop="10dp"
            android:text="@string/content_main_vente"
            android:textColor="@color/colorBlackText"
            android:textSize="13sp" />

        <Button
            android:id="@+id/buttonLocations"
            android:layout_width="60dp"
            android:layout_height="48dp"
            android:layout_marginRight="5dp"
            android:background="@drawable/circle"
            android:drawableTop="@drawable/ic_view_list"
            android:paddingTop="10dp"
            android:text="@string/content_main_location"
            android:textColor="@color/colorBlackText"
            android:textSize="13sp" />

        <Button
            android:id="@+id/buttonRecherche"
            android:layout_width="60dp"
            android:layout_height="48dp"
            android:background="@drawable/circle"
            android:drawableTop="@drawable/ic_search"
            android:paddingTop="10dp"
            android:text="@string/content_main_recherche"
            android:textColor="@color/colorBlackText"
            android:textSize="13sp" />


    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="40dp"
        android:orientation="horizontal">

        <Button
            android:id="@+id/buttonFavoris"
            android:layout_width="100dp"
            android:layout_height="80dp"
            android:layout_marginRight="14dp"
            android:background="@drawable/circle"
            android:drawableTop="@drawable/ic_star_accueil"
            android:paddingTop="10dp"
            android:text="@string/content_main_favoris"
            android:textColor="@color/colorBlackText"
            android:textSize="13sp" />

        <Button
            android:id="@+id/buttonContact"
            android:layout_width="100dp"
            android:layout_height="80dp"
            android:layout_marginRight="14dp"
            android:background="@drawable/circle"
            android:drawableTop="@drawable/ic_contacts"
            android:paddingTop="10dp"
            android:text="@string/content_main_contact"
            android:textColor="@color/colorBlackText"
            android:textSize="13sp" />

        <Button
            android:id="@+id/buttonSocial"
            android:layout_width="100dp"
            android:layout_height="80dp"
            android:background="@drawable/circle"
            android:drawableTop="@drawable/ic_share"
            android:paddingTop="10dp"
            android:text="@string/content_main_social"
            android:textColor="@color/colorBlackText"
            android:textSize="13sp" />


    </LinearLayout>

</LinearLayout>

1 个答案:

答案 0 :(得分:1)

而不是创建其他布局文件夹,只需维护不同的维度文件夹,如:
 values-sw320dp - 1dp
 values-sw360dp - 1.12dp
 values-sw410dp - 1.28dp
 values-sw480dp - 1.5dp