English 中文(简体)
Android Skin Layouts - 是否有工具和规格?
原标题:Android Emulator Skin Layouts - Are there tools and a specification?

粘合器的Skins在纸浆中作了定义,在纸浆/纸浆/日andro/日kins/日kins中,还有特定供应商的皮条。 这里,像背部和纽州图像一样的皮肤部分被储存,并存放在称为布局的皮肤中。

The layout file contains a herarchical list of key-value pairs, defining parts and layouts. Here is a fragment as illustration:

display {
    width   480
    height  800
    x       32
    y       106
}

background {
    image htc-evo-4g.png
    x 0
    y 0
}

button {
    soft-left {
        image key.png
        x 191
        y 921
    }
    home {
        image key.png
        x 73
        y 921
    }
...
}

我的问题是:

是否对布局档案中的语言进行了充分的具体说明?

是否有制造皮肤的工具,即图像和布局档案?

最佳回答

Android emulators are based on qemu. You can find a simple document about skin layout file in (Android Source Dir)/external/qemu/docs/ANDROID-SKIN-FILES.TXT(I m working with Android 2.3).

或仅到here

问题回答

暂无回答




相关问题
Very basic WPF layout question

How do I get this listbox to be maxiumum size, i.e. fill the group box its in. I ve tried width="auto" Height="auto", width="stretch" Height="stretch" annoyingly at the moment, it dynamicly sizes to ...

How to align the text to top of TextView?

How to align the text to top of a TextView? Equivalent Android API for Swings setInsets()? that is top of text should start be in (0,0) of TextView <?xml version="1.0" encoding="utf-8"?> <...

Centring a flow in Shoes

Can I center the contents of a flow in Shoes? I know that a paragraph can be centred like: para Centred paragrpah , :align=> center However, this does not work with flows: flow(:align=> ...

Overlaying with CSS

I want to load a website in an iframe, and overlay the website with some hints about the website that is shown. However, i got stuck at the point that the website has a variable passive white space at ...

How do you normally make a program look beautiful? [closed]

How can I make an Application look nice and not like an amateur pulled it together? I mean graphic-wise. Is there some sort of book you can read regarding beautiful program layouts, etc? I put this ...

热门标签