백그라운드 컬러
<?xml version=
"1.0"
encoding=
"utf-8"
?>
<LinearLayout xmlns:android=
"http://schemas.android.com/apk/res/android"
android:id=
"@+id/mLayout"
android:orientation=
"vertical"
android:layout_width=
"fill_parent"
android:layout_height=
"fill_parent"
android:background=
"@color/bg"
>
...
</LinearLayout>
<?xml version=
"1.0"
encoding=
"utf-8"
?>
<resources>
<string name=
"app_name"
>샘플</string>
<color name=
"bg"
>#FFFFFF</color>
</resources>
code from: http://shstarkr.tistory.com/122
화면 전환 애니메이션
<?xml version="1.0" encoding="utf-8"?> <alpha xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator" android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="100" />
code from: http://developerlife.com/tutorials/?p=343
related: http://developer.android.com/guide/topics/resources/available-resources.html#tweenedanimation