Android XML Layout不适合大多数设备

时间:2017-02-01 17:24:51

标签: android android-layout android-studio android-xml

我正在android studio中开发一个Android项目。在主要活动布局中,布局不适合每个智能手机。在这种情况下请帮助我。

这是主要播出的XML代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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/content_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="ml.microlion.development.fmmahanama.MainActivity"
    tools:showIn="@layout/app_bar_main">


    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"
        android:layout_alignParentStart="true">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <ImageView
                android:layout_width="match_parent"
                app:srcCompat="@mipmap/fmmahanama_banner2"
                android:id="@+id/imageView9"
                android:scaleType="fitCenter"
                android:adjustViewBounds="true"
                android:cropToPadding="false"
                android:layout_height="wrap_content" />
        </RelativeLayout>

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <Button
                android:text="Play Stream"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/btn_playstream"
                android:layout_weight="0.51"
                android:textAppearance="@style/TextAppearance.AppCompat.Widget.Button.Colored"
                android:backgroundTint="?android:attr/colorPressedHighlight"
                android:elevation="0dp" />

        </LinearLayout>

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:srcCompat="@mipmap/adbar_prev"
            android:id="@+id/imageView2"
            android:adjustViewBounds="true"
            android:scaleType="fitCenter" />

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="66dp">

            <Button
                android:text="Go To Website"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/btn_website"
                android:layout_weight="1" />

            <Button
                android:text="Feedback"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/btn_feedback"
                android:layout_weight="1" />

            <Button
                android:text="Share"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/btn_share"
                android:layout_weight="1" />

        </LinearLayout>
    </LinearLayout>

</RelativeLayout>

在编辑器中的默认设备中,我使用Nexus 4.编辑器上没问题。但是当我在我的星系j7和galaxy dous 2中运行时,我可以看到布局不合适。

0 个答案:

没有答案