Domande taggate «android-2.2-froyo»

14
Come impostare programmabilmente drawableLeft sul pulsante Android?
Sto creando dinamicamente pulsanti. Li ho disegnati prima usando XML, e sto provando a prendere l'XML qui sotto e renderlo programmatico. <Button android:id="@+id/buttonIdDoesntMatter" android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="buttonName" android:drawableLeft="@drawable/imageWillChange" android:onClick="listener" android:layout_width="fill_parent"> </Button> Questo è quello che ho finora. Posso fare tutto tranne il disegnabile. linear = (LinearLayout) findViewById(R.id.LinearView); Button button = new …



14
Nessuna attività trovata per gestire l'intento: android.intent.action.VIEW
Questo è il mio codice per riprodurre il file 3gp audio registrato Intent intent = new Intent(android.content.Intent.ACTION_VIEW); Uri data = Uri.parse(path); intent.setDataAndType(data, "audio/mp3"); startActivity(intent); Ma durante l'esecuzione sul mio dispositivo HTC (Android 2.2 Froyo) mostra un'eccezione: 05-04 16:37:37.597: WARN/System.err(4065): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=/mnt/sdcard/mnt/sdcard/audio-android.3gp typ=audio/mp3 …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.