• Tutorials
  • Tips & Tricks
  • Applications
  • News

Android Trainee

  • Tutorials
  • Tips & Tricks
  • Applications
  • News
15 July 2015

Android New Quick Action Animation.

Written by admin@androidtrainee
  —>  AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.NewQuickAction.android" android:versionCode="1" android:versionName="1.0"> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".QuickActionActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".Example1Activity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.VIEW" /> </intent-filter> </activity> <activity android:name=".Example2Activity" android:label="@string/app_name"> <intent-filter>...
Read More
Tutorials Android Animation, New Quick Action, Quick Action, Quick Action Animation 1 Comment
15 July 2015

Android satellite menu Animation.

Written by admin@androidtrainee
Android satellite menu Animation.   —>  AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0.0" package="android.view.satellitemenu"> <uses-sdk android:minSdkVersion="7"/> <application android:debuggable="false" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@android:style/Theme.Light"> <activity android:label="@string/app_name" android:name=".SatelliteMenuActivity"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> </application> </manifest> In values Folder sat_attrs.xml  ...
Read More
Tutorials Android arc menu, Android menu, Arc menu, Arc Menu Animation, menu, menu animation, satellite menu Leave a Comment
14 July 2015

Android Staggered Grid & List View.

Written by admin@androidtrainee
Android Staggered Grid & List View.   Create Android Staggered Lib Project.   —>  AndroidManifest.xml <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.grid" android:versionCode="1" android:versionName="1.0.3"> <uses-sdk android:minSdkVersion="11"/> <application /> </manifest>   values folder   attrs.xml   <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="StaggeredGridView"> <attr name="column_count"...
Read More
Tutorials Android Listview, GridView, listview, Staggered Gridview, Staggered Listview Leave a Comment
14 July 2015

Draw Android Bar Chart With Animation.

Written by admin@androidtrainee
Draw Android Bar Chart With Animation.   —>  AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.barchart" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="22" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" />...
Read More
Tutorials android bar chart, Animation Bar Chart, Anroid Chart Animation, Bar Chart, chart, chartview Leave a Comment
14 July 2015

Draw Android Clock Pie Chart With Animation.

Written by admin@androidtrainee
Draw Android Clock Pie Chart With Animation.   —>  AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.barchart" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="22" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER"...
Read More
Tutorials android chart, chart, chart animcation, chart view, clock pie chart, clock pie chart animation Leave a Comment
14 July 2015

Draw Android Line Chart With Animation.

Written by admin@androidtrainee
Draw Android Line Chart With Animation.   —>  AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.barchart" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="22" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" />...
Read More
Tutorials android chart animation, chart, chartview, line chart, line chart animation Leave a Comment
14 July 2015

Draw Android pie Chart With Animation.

Written by admin@androidtrainee
Draw Android pie Chart With Animation.   —>  AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.barchart" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="22" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" />...
Read More
Tutorials android chart animation, android pie chart, chart, chartview, pie chart, pie chart animation Leave a Comment
13 July 2015

Picasso Image Loader With GridView For Android.

Written by admin@androidtrainee
Picasso Image Loader With GridView For Android. —>  AndroidManifest.xml   <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.universalimageloaderdemo" android:versionCode="1" android:versionName="1.0" > <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="22" /> <application android:allowBackup="false" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name" >...
Read More
Tutorials Android GridView, GridView, Image Loader, Picasso, Picasso Image Loader 1 Comment
13 July 2015

Android Query Image Loader With GridView For Android.

Written by admin@androidtrainee
Android Query Image Loader With GridView For Android.   —>  AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.universalimageloaderdemo" android:versionCode="1" android:versionName="1.0" > <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="22" /> <application android:allowBackup="false" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name"...
Read More
Tutorials Android GridView, Android Query, Android Query Image Loader, Aquery, GridView, Image Loader Leave a Comment
13 July 2015

Universal Image Loader With GridView For Android.

Written by admin@androidtrainee
Universal Image Loader With GridView For Android.   —>  AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.universalimageloaderdemo" android:versionCode="1" android:versionName="1.0" > <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="22" /> <application android:name=".UILApplication" android:allowBackup="false" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name"...
Read More
Tutorials android, Android GridView, GridView, Image Loader, Universal Image Loader Leave a Comment
1 2 … 7 Next →

Tags

admob Advertising Networks AerServ Airpush android android ads android Advertising Networks Android App android chart animation Android GridView android L android lollipop androidmapv2 AppBrain AppFlood Appia AppKey Appnext AppOptim Appwiz chart chartview Epom Market google place api GridView Image Loader InMobi LeadBolt location map mapv2 mapv2 api material design Minimob Mobicow MobileCore MobiMicro NativeX Pingjam RevMob StarApplication startapp TapContext touched location Widdit

Count per Day

  • 160Reads yesterday:
  • 463321Total visitors:
  • 122Visitors today:
  • 1914Visitors per month:
  • 0Visitors currently online:
© Copyright 2014. Theme by BloomPixel.
Posting....