在Corona sdk中看不到按钮图像

时间:2013-07-11 21:26:34

标签: corona

我正在尝试创建一个带图像的按钮,但我看不到图像。我只看到一个带有我标签的白色盒子。我在main.lua所在的文件夹中有一个名为btn.png的图像。

到目前为止,这是我的代码:

local background = display.newRect(0,0,320,480);
background:setFillColor(255,222,255);

local widget = require("widget");

local text = display.newText("Dit is een text", 0, 0, native.systemFont, 32);
text:setTextColor(0,0,0);
text.x = 100;
text.y = 100;

local btn = widget.newButton{
id = "Button 1",
width = 256,
height = 256,
top = 100,
left = 50,
label = "Dit is een knopke",
labelColor = {
    default = {245,244,245},
    over = {255,145,167}
    },
defaultFile = "btn.png",
} 

我没有看到我的代码有什么问题。我也在电晕文档中搜索它,但我没有看到它有什么问题。

0 个答案:

没有答案