Android:导航抽屉标题图片

时间:2016-12-26 19:42:25

标签: android image

我尝试为我的所有活动创建导航抽屉。我使用Android Studio并生成导航抽屉活动。我的其他活动在其中扩展以获得导航抽屉。我插入带有Android Studio功能的Pictue,现在在" mipmap"中存在hdpi和xhdpi ....文件夹中。

我将导航标题布局背景更改为我插入的图像:

android:background="@mipmap/ic_lmg_bck"

nav_header_nd.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="@dimen/nav_header_height"
    android:background="@mipmap/ic_lmg_bck"
    android:gravity="bottom"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:theme="@style/ThemeOverlay.AppCompat.Dark">

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/nav_header_vertical_spacing"
        app:srcCompat="@drawable/ic_launcher" />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/nav_header_vertical_spacing"
        android:text="Nutzername"
        android:textAppearance="@style/TextAppearance.AppCompat.Body1" />

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Nutzernameemail" />

</LinearLayout>

一切正常但图像模糊不清:

Screenshot

原始图片:

original

如何调整图像大小?

3 个答案:

答案 0 :(得分:3)

要添加背景,您只需将图片复制/粘贴到drawable文件夹(不要使用“添加新图片资源”添加图片)。

在此之后,您转到:nav_header_nd.xml

将背景更改为:

android:background="@drawable/mypicture"

答案 1 :(得分:0)

This thread是关于如何以正确的方式实现drawable。

最后你应该有一个高分辨率的图像。我可以看到您使用了ic_launcher功能将其转换为图标分辨率。

答案 2 :(得分:0)

这是我使用的代码,它是一个小的自定义navigationView:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include
    layout="@layout/content_home"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

<android.support.design.widget.NavigationView
    android:id="@+id/nav_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="true">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:orientation="vertical">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:scaleType="centerCrop"
            android:layout_weight="1" />

        <LinearLayout
            android:id="@+id/ll_feedback"
            style="@style/Navigation_linear">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="44dp"
                android:src="@drawable/feedback" />

            <TextView
                style="@style/Navigation_text"
                android:text="Give us feedback" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/ll_share_app"
            style="@style/Navigation_linear">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="44dp"
                android:src="@drawable/faq" />

            <TextView
                style="@style/Navigation_text"
                android:text="Share app" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/ll_rate_app"
            style="@style/Navigation_linear">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="44dp"
                android:src="@drawable/rate" />

            <TextView
                style="@style/Navigation_text"
                android:text="Rate app" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/ll_setting"
            style="@style/Navigation_linear">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="44dp"
                android:src="@drawable/setting" />

            <TextView
                style="@style/Navigation_text"
                android:text="Settings" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/ll_notifications"
            style="@style/Navigation_linear">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="44dp"
                android:src="@drawable/notification" />

            <TextView
                style="@style/Navigation_text"
                android:text="Notifications" />
        </LinearLayout>

        <ImageView
            android:id="@+id/backNavigation"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:layout_marginBottom="72dp"
            android:layout_marginLeft="16dp"
            android:adjustViewBounds="true"
            android:background="?attr/selectableItemBackground"
            android:clickable="true"
            android:padding="24dp"
            android:src="@drawable/arrow_left" />
    </LinearLayout>
</android.support.design.widget.NavigationView>

尝试一下,让我知道它是否有帮助。