在同一分辨率屏幕上,不同设备上的布局显示不同

时间:2015-05-30 12:41:09

标签: android android-layout screen-resolution screen-density

问题:在同一分辨率屏幕上,不同设备上的布局显示不同。我在三星Galaxy S4 (1080x1920)和 LG G2 (1080x1920)上进行了测试。它的分辨率相同,那么为什么每个设备上的布局显示方式不同?

我已经在布局文件夹中,并没有其他分辨率的其他布局。

以下是屏幕:

  • 三星Galaxy S4

http://www.image-share.com/ijpg-2963-272.html

  • LG G2

http://www.image-share.com/ijpg-2963-271.html

编辑#1

<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:id="@+id/layoutMain"
tools:mContext="com.test.app.flock.mActivity">

<ImageView
    android:id="@+id/imageViewImageBackground"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:visibility="gone" />

<View
    android:id="@+id/viewBackground"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background01" />

<View
    android:id="@+id/viewFingerprint"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/fingerprint01"
    android:visibility="gone" />

<Button
    android:id="@+id/buttonScanning"
    android:layout_width="162dp"
    android:layout_height="130dp"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="41dp"
    android:background="@android:color/transparent" />

<ImageView
    android:id="@+id/imageViewScanner"
    android:layout_width="162dp"
    android:layout_height="130dp"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="41dp"
    android:src="@drawable/line01"

    android:visibility="gone" />

<TextView
    android:id="@+id/textViewResult"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="180dp"

    android:text="SCANNING"
    android:textSize="30sp"
    android:textColor="@android:color/white"
    android:textStyle="bold"
    android:gravity="center"

    android:visibility="gone" />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="55dp"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="112dp"
    android:orientation="vertical">

    <DigitalClock
        android:id="@+id/digitalClock"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="7"

        android:textSize="30sp"
        android:textColor="@android:color/white"
        android:gravity="center"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/textViewDate"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="10"

        android:text="10 Grudzien 2015"
        android:textSize="20sp"
        android:textColor="@android:color/white"
        android:gravity="center"
        android:textStyle="bold" />

</LinearLayout>

2 个答案:

答案 0 :(得分:5)

手机的分辨率相同,但窗口高度不同,因为LG G2在屏幕上有导航键。

答案 1 :(得分:0)

问题不在于布局或密度,而在于可用的不同高度,因为存在按钮栏。 由于设置为nodeWithMaxDropsEle = driver.find_elements_by_id(nodeWithMaxDropsId)[0] print('nodeWithMaxDropsEle: ', nodeWithMaxDropsEle) if nodeWithMaxDropsEle.is_displayed(): nodeWithMaxDropsEle.click() print('Element: nodeWithMaxDropsEle visible') else: print('Element: nodeWithMaxDropsEle not visible') time.sleep(3) driver.save_screenshot("scshot-after-3.png") 的{​​{1}}的图片会扩展,扭曲自身,我建议您将其设为background的{​​{1}}并设置Viewsrc,这样图像将适合屏幕保持其比例:

ImageView