Skip to main content

Posts

Showing posts from November, 2013

Create Animation Effect In Android

1] Create anim Folder in res folder   A] alph.xml:                <?xml version="1.0" encoding="utf-8"?>               <set xmlns:android="http://schemas.android.com/apk/res/android">               <alpha                            android:fromAlpha="0"                            android:toAlpha="1.0"                            android:fillAfter="true"                            android:duration="7000"/>  ...