导航抽屉图像尺寸

时间:2015-01-13 19:27:57

标签: android image navigation-drawer

我正在尝试创建一个与材料指南具有相似外观的导航抽屉。我一直在调整尺寸方面遇到麻烦,我发现使用显示视图的叠加线。我的正在发生的事情是图像没有填满屏幕顶部的空间,以及我在其下面的列表。这是显示标题栏顶部和状态栏的前图像,下面是展开的抽屉图像。 Images

我在imageview本身或抽屉上没有任何边距或填充。我的图片大小为320x160,位于drawable文件夹中。图像更大,以适应导航栏的平板电脑宽度。手机导航栏的宽度为280dp。它实际上在平板显示器上显示得很好。这是代码:

<ImageView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/navDrawerImageView"
    android:src="@drawable/navimage"
    android:layout_alignParentTop="true" />

关于我做错的任何想法?感谢。

1 个答案:

答案 0 :(得分:0)

我也遇到了这个问题并通过指定图像的高度来解决。您可能需要使用它,但140dp适合我,并将宽度保留为填充父级。

这是我的代码:

  <ImageView
        android:layout_width="fill_parent"
        android:layout_height="140dp"
        android:src="@drawable/navdrawerimage"
        android:contentDescription="@string/image"
        android:layout_marginBottom="10dp"/>

希望这有助于男人!