I want to display svg image in image view. First, I download svg-android 1.1.jar and save it in the lib file, and also save the svg image in the res / raw folder, and I used the follwing code to display the svg image
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
but when I run this program, I get a blank screen instead of the svg file, and I check the code using Android devices, but when I test using the emulator, the image is displayed. How can I get svg image in android device?
source share