web-dev-qa-db-fra.com

Obtenir l'URI d'une image stockée dans drawable

J'ajoute quelques exemples d'éléments dans mon application, de sorte qu'il ne semble pas si vide lorsque l'utilisateur le consulte pour la première fois. La liste avec les exemples d'éléments doit avoir une image et l'image que je vais utiliser est déjà stockée dans le dossier/res/drawable-de l'application. 

Étant donné que j’ai déjà une méthode qui charge les éléments des images depuis un URI, j’aimerais obtenir l’URI dans le fichier /res/drawable/myImage.jpg, mais il me semble que je ne parviens pas à le comprendre correctement. 

Le flux est le suivant: Créez un élément avec une chaîne représentant l’URI de l’image . Envoyez la liste des éléments à une liste La liste charge l’image dans une tâche en arrière-plan en convertissant la chaîne en URL et puis exécutez url.openStream ();

J'ai essayé quelques options pour l'URI sans aucun succès. "Android.resource: // ....." dit unknow protocoll "Fichier: //" fichier non trouvé

Alors maintenant, je suis un peu perdu sur la façon de résoudre ce problème ..

49
Roland

Vous devez utiliser ContentResolver pour ouvrir les URI de ressources:

Uri uri = Uri.parse("Android.resource://your.package.here/drawable/image_name");
InputStream stream = getContentResolver().openInputStream(uri);

Vous pouvez également ouvrir des URI de fichiers et de contenu à l'aide de cette méthode.

80
Michael
/**
 * get uri to drawable or any other resource type if u wish 
 * @param context - context
 * @param drawableId - drawable res id
 * @return - uri 
 */
public static final Uri getUriToDrawable(@NonNull Context context, 
                                         @AnyRes int drawableId) {
    Uri imageUri = Uri.parse(ContentResolver.SCHEME_Android_RESOURCE +
            "://" + context.getResources().getResourcePackageName(drawableId)
            + '/' + context.getResources().getResourceTypeName(drawableId)
            + '/' + context.getResources().getResourceEntryName(drawableId) );
    return imageUri;
}

basé sur ce qui précède - version modifiée pour toute ressource:

 /**
 * get uri to any resource type
 * @param context - context
 * @param resId - resource id
 * @throws Resources.NotFoundException if the given ID does not exist.
 * @return - Uri to resource by given id 
 */
public static final Uri getUriToResource(@NonNull Context context, 
                                         @AnyRes int resId)
                           throws Resources.NotFoundException {
    /** Return a Resources instance for your application's package. */
    Resources res = context.getResources();
    /**
     * Creates a Uri which parses the given encoded URI string.
     * @param uriString an RFC 2396-compliant, encoded URI
     * @throws NullPointerException if uriString is null
     * @return Uri for this given uri string
     */
    Uri resUri = Uri.parse(ContentResolver.SCHEME_Android_RESOURCE +
            "://" + res.getResourcePackageName(resId)
            + '/' + res.getResourceTypeName(resId)
            + '/' + res.getResourceEntryName(resId));
    /** return uri */
    return resUri;
}

quelques infos: 

From the Java Language spec.:

"17.5 Final Field Semantics

... when the object is seen by another thread, that thread will always
see the correctly constructed version of that object's final fields.
It will also see versions of any object or array referenced by
those final fields that are at least as up-to-date as the final fields
are."

In that same vein, all non-transient fields within Uri
implementations should be final and immutable so as to ensure true
immutability for clients even when they don't use proper concurrency
control.

For reference, from RFC 2396:

"4.3. Parsing a URI Reference

   A URI reference is typically parsed according to the four main
   components and fragment identifier in order to determine what
   components are present and whether the reference is relative or
   absolute.  The individual components are then parsed for their
   subparts and, if not opaque, to verify their validity.

   Although the BNF defines what is allowed in each component, it is
   ambiguous in terms of differentiating between an authority component
   and a path component that begins with two slash characters.  The
   greedy algorithm is used for disambiguation: the left-most matching
   rule soaks up as much of the URI reference string as it is capable of
   matching.  In other words, the authority component wins."

...

3. URI Syntactic Components

   The URI syntax is dependent upon the scheme.  
   In general, absolute URI are written as follows:

     <scheme>:<scheme-specific-part>

   An absolute URI contains the name of the scheme being used (<scheme>)
   followed by a colon (":") and then a string  (the <scheme-specific-part>) 
   whose interpretation depends on the scheme.

   The URI syntax does not require that the scheme-specific-part have any
   general structure or set of semantics which is common among all URI.
   However, a subset of URI do share a common syntax for representing
   hierarchical relationships within the namespace.  This "generic URI"
   syntax consists of a sequence of four main components:

     <scheme>://<authority><path>?<query>

sources: 

CONTESTATION

cette réponse est correcte, mais la partie concernant les champs finaux n'est pas - elle n'a rien à voir avec la réponse - Boris Treukhov}

@BorisTreukhov - veuillez nous expliquer ce que vous entendez par "la partie concernant les champs finaux n'est pas correcte" - question - comment obtenir uri ...? construire la façon dont il pourrait être analysé (comment uri est-il analysé? voir la réponse) 

package Android.net;

/**
 * Immutable URI reference. A URI reference includes a URI and a fragment, the
 * component of the URI following a '#'. Builds and parses URI references
 * which conform to
 * <a href="http://www.faqs.org/rfcs/rfc2396.html">RFC 2396</a>.
 *
 * <p>In the interest of performance, this class performs little to no
 * validation. Behavior is undefined for invalid input. This class is very
 * forgiving--in the face of invalid input, it will return garbage
 * rather than throw an exception unless otherwise specified.
 */
 public abstract class Uri implements Parcelable, Comparable<Uri> { ... }
39
ceph3us

Voici ce dont vous avez vraiment besoin:

 Uri imageUri = Uri.parse(ContentResolver.SCHEME_Android_RESOURCE +
 "://" + getResources().getResourcePackageName(R.drawable.ic_launcher)
 + '/' + getResources().getResourceTypeName(R.drawable.ic_launcher) + '/' + getResources().getResourceEntryName(R.drawable.ic_launcher) );
26
xnagyg

Vous pouvez utiliser Uri.Builder au lieu de la concaténation de chaînes

 Uri imageUri = (new Uri.Builder())
    .scheme(ContentResolver.SCHEME_Android_RESOURCE)
    .authority(resources.getResourcePackageName(resourceId))
    .appendPath(resources.getResourceTypeName(resourceId))
    .appendPath(resources.getResourceEntryName(resourceId))
    .build()
2
Rostyslav Roshak

La réponse la plus simple serait: Uri.parse (String va ici); // Donc, pour que l'ajustement soit ajustable à l'intérieur de ce support, il vous suffit de le faire.

Uri.parse(getResource().getDrawable(R.drawable.ic_launcher_background).toString());

C'est tout.

0
Pokhraj Sah

Pour Kotlin,

context.resources.getResourcePackageName(R.drawable.image_name)
0
devDeejay