AndroidDeveloperLB

Results 603 comments of AndroidDeveloperLB

It's for all of those: https://romannurik.github.io/AndroidAssetStudio/

You could export to SVG, so that designers could also modify the files easier.

Why not ? You can already convert SVG files to VectorDrawables, like on Android Studio. When you create the image files from the selection (not from image files of the...

Text is not possible only because VectorDrawable doesn't support it (sadly), right? Just like it doesn't support many other SVG features, like gradients... But I think you can export to...

But fonts are by definition vectorized, no? So that no matter how you resize them, they will keep being sharp and nice... There are even tutorials for this. Here's an...

It's not possible to get the font's paths? So how does it get drawn? Only by black-box commands of the web browser's engine?

OK sorry. Just not my field, so I sometimes don't know what is possible and what's not on a web browser. It's too bad though. Isn't it even possible to...

btw, just using it in a new project and loading the gif, it works fine.

@anvesh523 This is what I did : 1. put the gif file into the "res/raw/" folder 2. use this code: ``` GifView gifView = (GifView) findViewById(R.id.gifView); gifView.setMovieResource(R.raw.gif_file); ``` It works...

@anvesh523 I didn't use it, but looking at the GifView code, you can see how it's being created inside setMovieResource .