我正在将我的一个Android应用程序转换为钛合金,我有一些选择器xml用于保存在res / drawable文件夹(custom_btn_genoa.xml)中的按钮,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_pressed="true" >
<shape android:shape="rectangle" >
<corners android:radius="3dip" />
<stroke android:width="1dip" android:color="#20534e" />
<gradient android:angle="-90" android:startColor="#062d30" android:endColor="#4c898e" />
</shape>
</item>
<item android:state_focused="true">
<shape android:shape="rectangle" >
<corners android:radius="3dip" />
<stroke android:width="1dip" android:color="#20534e" />
<solid android:color="#125156"/>
</shape>
</item>
<item >
<shape android:shape="rectangle" >
<corners android:radius="3dip" />
<stroke android:width="1dip" android:color="#20534e" />
<gradient android:angle="-90" android:startColor="#4c898e" android:endColor="#125156" />
</shape>
</item>
</selector>
然后我的按钮样式(values / styles.xml)
<style name="btnStyleGenoa" parent="@android:style/Widget.Button">
<item name="android:textSize">15sp</item>
<item name="android:textStyle">bold</item>
<item name="android:textColor">#FFFFFF</item>
<item name="android:gravity">center</item>
<item name="android:shadowColor">#000000</item>
<item name="android:shadowDx">1</item>
<item name="android:shadowDy">1</item>
<item name="android:shadowRadius">0.6</item>
<item name="android:background">@drawable/custom_btn_genoa</item>
<item name="android:padding">10dip</item>
</style>
在钛合金中,我可以设置文本大小,颜色等,但是如何轻松地在钛合金中实现选择器xml的东西呢?
答案 0 :(得分:0)
从Android样式到Titanium的转换不是一对一的,它通常适用于多种平台(iOS,Android,Windows,Blackberry)。在这种情况下(如果你试图模拟一个按钮选择器)这是内置于Titanium的,这里是一个近似于Alloy xml的选择器,你有什么:
<Alloy>
<Button id="button" title="Hello"
top="10" width="100" height="50"
color="#FFF"
backgroundFocusedColor="#125156"
backgroundColor="#125156"
backgroundSelectedColor="#4c898e"/>
</Alloy>
backgroundFocused和Selected每个指定用户与按钮交互时使用的不同图像或颜色。