2016-08-01 9 views
1

私はAndroidアプリケーションを開発しています。ここでサンプル画像を見せています。Android ImageViewは常に空です

XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
tools:context="com.xwaybill.xdriver2.HelpActivity" 
android:background="#EAEAEA"> 

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    app:srcCompat="@drawable/footerlogo" 
    android:layout_alignParentTop="true" 
    android:id="@+id/imageView4" 
    android:adjustViewBounds="true" 
    android:elevation="21dp" 
    android:layout_alignParentRight="true" 
    android:layout_alignParentEnd="true" /> 

See image for result

私は解像度で、すべての解像度のフォルダに画像を得ました。これは私の最初のアプリケーションではなく、これは古いもののアップデートです。 Android 3を6から6に移行して以来、私はこの問題の王を抱いています。私は、他のアクティビティと同じ正確なイメージを持ち、正確に表示していることを言いたいと思います。

ありがとうございます。

答えて

0

Build.gradleでまず、:

defaultConfig { 
    vectorDrawables.useSupportLibrary = true 
} 

第二:

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    app:srcCompat="@drawable/XXXX" 
    tools:ignore="MissingPrefix" /> 

最後に:

xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 

この記事であなたのために役立つことがあります。Can't use srcCompat for ImageViews in android

+0

私はすでにやりましたこれは、最初のac tivity、その記事に基づいています。ここでは機能しません。どうも。 – Daniel

関連する問題