Tengo un archivo XML bastante simple que tiene un botón de imagen. La imagen aparece bien en el diseñador gráfico Layout xml, se muestra bien cuando ejecuto una compilación de desarrollo, pero tan pronto como creo el archivo apk firmado y lo ejecuto, la imagen ya no se muestra. Es solo un botón vacío. No puedo pensar en una razón por qué, alguna idea? El archivo XML es el siguiente:Android: Drawable no aparece
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/navigation_root"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/navigation_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:text="TextView"
android:textAppearance="?android:attr/textAppearanceLarge" >
</TextView>
<SeekBar
android:id="@+id/navigation_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:padding="5dp" >
</SeekBar>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp" >
<ImageButton
android:id="@+id/part_select_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/chapter_select" >
</ImageButton>
<Button
android:id="@+id/navigation_ok_button"
android:layout_width="75dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="@string/ok" >
</Button>
<Button
android:id="@+id/navigation_cancel_button"
android:layout_width="75dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="@string/cancel" >
</Button>
</LinearLayout>
La imagen @drawable/chapter_select
es bastante pequeña (41 * 41) PNG que se encuentra en la carpeta res/estirable.
No quiero ponerlo en una carpeta de densidad de pantalla específica porque quiero que todos los dispositivos puedan usar la imagen sin hacer copias. Configurar la imagen dinámicamente no cambió nada, aún no aparece en la compilación firmada. Gracias por intentarlo, Luk. – odiggity