Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Titanium Studio 的新手。我想为 Android 创建一个无边框的文本字段。我看到有一种适用于 Ios 的方法,但没有找到适用于 android 的方法。谁能建议我如何为android创建一个没有边框的文本字段。提前致谢。
看来当前的技巧是在 Android 平台上应用透明图像。这似乎也适用于 IO,尽管我认为 IOS 的首选选项是设置borderStyle:Ti.UI.INPUT_BORDERSYLE_NONE
var myText = Ti.UI.createTextField({ backgroundImage: 'images/transparent.jpeg' });