导航抽屉背景图像在KitKat中加载但在Lollipop中不加载

时间:2015-03-25 19:16:11

标签: android android-layout navigation-drawer

我在我的一个应用程序中实现了NavigationDrawer。当我在AndroidOne(运行KitKat)上测试它时。它可以很好地加载背景图像,但是当我尝试在Nexus 5(Lollipop)中运行相同的代码时。它没有加载背景图像。

这是我的header.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="178dp"
android:background="@drawable/background_poly"
android:orientation="vertical"
android:weightSum="1">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="56dp"
    android:orientation="vertical"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:gravity="center_horizontal">

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/textColor"
        android:text="@string/my_name"
        android:textSize="14sp"
        android:textStyle="bold"

        />

    <TextView
        android:id="@+id/email"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/textColor"
        android:text="@string/my_email"
        android:textSize="14sp"
        android:textStyle="normal"

        />
</LinearLayout>

<de.hdodenhof.circleimageview.CircleImageView
    android:layout_width="70dp"
    android:layout_height="70dp"
    android:src="@drawable/profile_pic"
    android:layout_centerInParent="true"
    android:id="@+id/circleView"
    />

修改

在logcat中,我看到以下内容:

6572-6600/com.keshan.mytestapp E/﹕ appName=com.keshan.mytestapp, acAppName=/system/bin/surfaceflinger    
6572-6600/com.keshan.mytestapp E/﹕ 0

0 个答案:

没有答案