android工程下的文件资源类型
2010-08-19 09:28:00 来源:WEB开发网< /style>
< /resources>
主题主要针对Activity等, 可以在Android Manifest中定义的< application>和< activity>元素将主题添加到整个程序或者某个 Activity,但是主题是不能应用在某一个单独的View里.风格可以自己定义也可以使用程序自带的或是继承已有的风格。
< ?xml version="1.0" encoding="utf-8"?>
< resources>
< style name="CustomTheme">
< item name="android:windowNoTitle">true< /item>
< item name="windowFrame">@drawable/screen_frame< /item>
< item name="windowBackground">@drawable/screen_background_white< /item>
< item name="panelForegroundColor">#FF000000< /item>
< item name="panelBackgroundColor">#FFFFFFFF< /item>
< item name="panelTextColor">?panelForegroundColor< /item>
< item name="panelTextSize">14< /item>
< item name="menuItemTextColor">?panelTextColor< /item>
< item name="menuItemTextSize">?panelTextSize< /item>
< /style>
< /resources>
10、 动画
动画资源分为两种,一是实现图片的translate、scale、rotate、alpha四种变化。还可以设置动画的播放特性;另一种是帧动画,逐帧播放设置的资源
先说一下第一种
Res/anim/filename.xml
< set xmlns:android="http://schemas.android.com/apk/res/android">
< translate android:interpolator="@android:anim/accelerate_interpolator"
android:fromXDelta="0" android:toXDelta="200" android:fromYDelta="0"
android:toYDelta="180" android:duration="2000" />
< scale android:interpolator="@android:anim/accelerate_interpolator"
android:fromXScale="1.0" android:toXScale="2.0" android:fromYScale="1.0"
android:toYScale="2.0" android:pivotX="150%" android:pivotY="150%"
更多精彩
赞助商链接