skip to Main Content

Android Studio – Android studio: why image shown in design disapears in run time?

Images shown in Android studio disapear in the emulator : More than words, you can see thus screenshot explicit: Code: <?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/signorGrey"> <ImageView android:id="@+id/logoSignor" android:layout_width="65dp" android:layout_height="77dp" app:srcCompat="@drawable/iconpetit2929" android:gravity="start|center_vertical" android:background="@color/signorBlue" android:visibility="visible" android:contentDescription="@string/logosignor"/> Do…

VIEW QUESTION
Back To Top
Search