布局预览与eclipse上设备上的布局不同

时间:2014-05-07 08:28:08

标签: android eclipse android-layout layout

我在nexus 7设备(tvdpi)上的应用程序布局有问题,eclipse上的预览(这就是我的应用程序看起来是这样的)与真实设备上的布局不同。事实上,在设备上使用一个小的drawable来代替正确的。这是我的drawable和布局文件夹

  • 抽拉-MDPI
  • 抽拉-HDPI
  • 抽拉-tvdpi
  • 抽拉-xhdpi
  • 抽拉-xxhdpi

  • 布局

  • 布局xhdpi
  • 布局xxhdpi

我没有每种屏幕类型的布局文件夹,因为我不需要所有(大多数布局由图像组成)。 这是我的布局之一,在真实设备上看起来不像预览:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<ImageView
    android:id="@+id/header"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:scaleType="fitXY"
    android:src="@drawable/header" />

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:src="@drawable/login" />

</RelativeLayout>

怎么了? drawables正确缩放。

0 个答案:

没有答案