Android Studio无法识别9patch生成的图像

时间:2015-07-25 13:24:14

标签: android android-studio nine-patch

我从Simple 9补丁生成器生成9patch图像,可在互联网上免费获取启动画面。当我写angular.module('testApp').factory('posts', ['$http', function($http) { var o = { 'posts': [] }; o.getAll = function() { return $http.get('/posts.json').success(function(data) { angular.copy(data, o.posts); }); }; return o; }]); 时,它无法识别图像。

另外,当我从左上方的下拉菜单中选择android:background="@drawable/splash.9"时,我看不到放在不同可绘制文件夹中的图像。 http://localhost:3000/#/home enter image description here

1 个答案:

答案 0 :(得分:2)

无需添加.9后缀。只是告诉构建环境这是一个9patch。 Link to documentation

android:background="@drawable/splash"

应该足够了