外观在仿真器中正常工作,但在Real Device中无法正常工作

时间:2016-08-04 07:50:16

标签: android android-studio android-emulator

Appearance look like this when I run in Emulator

But When I run in real device it look like this.

查看链接图片以供参考。

什么似乎是问题家伙?

请问我要让我粘贴哪些代码,以便您查看。

谢谢!

已编辑 -

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/test_image"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:contentDescription="@string/menu_display_image"
            android:src="@drawable/iinterior"></ImageView>

        <View
            android:layout_width="fill_parent"
            android:layout_height="60dp"
            android:layout_gravity="top"
            android:background="#AA000000"></View>

        <TextView
            android:id="@+id/title"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top|right"
            android:padding="10dp"
            android:text="@string/text_goes_here"
            android:textColor="@android:color/white"
            android:textSize="30dp" />

    </FrameLayout>

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

        <Button
            android:id="@+id/fragment_button_center"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:layout_weight="50"
            android:background="@drawable/butt_purple"
            android:padding="5dp"
            android:shadowColor="@android:color/white"
            android:shadowDx="1"
            android:shadowDy="1"
            android:shadowRadius="10"
            android:text="@string/add_to_my_menu"
            android:textSize="18dp" />

        <Button
            android:id="@+id/fragment_button_left"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:layout_weight="50"
            android:background="@drawable/butt_other"
            android:padding="5dp"
            android:shadowColor="@android:color/white"
            android:shadowDx="1"
            android:shadowDy="1"
            android:shadowRadius="10"
            android:text="View Order State"
            android:textSize="18dp" />
    </LinearLayout>

    <TextView
        android:id="@+id/description"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:padding="10dp"
        android:text="@string/description"
        android:textSize="20dp" />
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

请详细阅读:Support multiple screens

你会看到布局有不同的外观和感觉取决于屏幕特征...