当我点击应用程序时,我只是想看一些SVG图像。我尝试过这个。导入android studio的步骤是正确的。但是当我运行apk时,我只能看到一个空白屏幕。 SVG图像确实没有显示出来。那我该怎么办?我怎么能纠正它? 我使用的代码是,
import android.graphics.Color;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ImageView;
import com.larvalabs.svgandroid.SVG;
import com.larvalabs.svgandroid.SVGParser;
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Create a new ImageView
ImageView imageView = new ImageView(this);
// Set the background color to white
imageView.setBackgroundColor(Color.BLACK);
// Parse the SVG file from the resource
SVG svg = SVGParser.getSVGFromResource(getResources(), R.raw.android);
// Get a drawable from the parsed SVG and set it as the drawable for the ImageView
imageView.setImageDrawable(svg.createPictureDrawable());
// Set the ImageView as the content view for the Activity
setContentView(imageView);
}
答案 0 :(得分:1)
您的问题很可能是由以下两点之一引起的:
请参阅:Having issue on Real Device using vector image in android. SVG-android