Sunday, December 1, 2013

Enable design mode HTML page in Visual Studio 2013

By default, in VS version 2013 or later, we can't view html page in design mode as in older version VS. So, now we can enable design mode as following clip.

Posted By Live Blog7:33 PM

Tuesday, November 5, 2013

Make money $$$ for android dev with startapp

It's easy and simple! Now let's begin!

First, register a new account here: Register Start App


Choose I'm a developer



Posted By Live Blog11:15 AM

Sunday, October 6, 2013

Developping Android Apps is simple through simple Demo Apps - Part 22: Draw Shapes

Here's the tutorial how to draw shapes in android


[ttaiit.blogspot.com]

Posted By Live Blog3:56 AM

Thursday, October 3, 2013

Developping Android Apps is simple through simple Demo Apps - Part 21: Animate an image

Here's the tutorial how to animate an image


[ttaiit.blogspot.com]

Posted By Live Blog1:02 AM

Developping Android Apps is simple through simple Demo Apps - Part 20: Touch & drag to rotate image

Here's the tutorial how to drag with touch event to rotate an image


[ttaiit.blogspot.com]

Posted By Live Blog1:00 AM

Developping Android Apps is simple through simple Demo Apps - Part 19: Drag n drop image with touch

Here's the tutorial how to drag and drop an image with touch event


[ttaiit.blogspot.com]

Posted By Live Blog12:57 AM

Friday, September 27, 2013

Developping Android Apps is simple through simple Demo Apps - Part 18: Control image rotation

Here's the tutorial how to control the rotation of an image


[ttaiit.blogspot.com]

Posted By Live Blog11:08 AM

Developping Android Apps is simple through simple Demo Apps - Part 17: Auto rotate image

Here's the tutorial how to rotate the image automatically


[ttaiit.blogspot.com]

Posted By Live Blog11:06 AM

Developping Android Apps is simple through simple Demo Apps - Part 16: Message from client to server

Here's the tutorial how to message from client to server


[ttaiit.blogspot.com]

Posted By Live Blog11:04 AM

Developping Android Apps is simple through simple Demo Apps - Part 15: Send Email

Here's the tutorial how to send email


[ttaiit.blogspot.com]

Posted By Live Blog11:02 AM

Developping Android Apps is simple through simple Demo Apps - Part 14: Send SMS

Here's the tutorial how to send SMS


[ttaiit.blogspot.com]

Posted By Live Blog10:58 AM

Developping Android Apps is simple through simple Demo Apps - Part 13: Spinner to spinner

Here's the tutorial how to get data from spinner to spinner to extract data in SQLite


[ttaiit.blogspot.com]

Posted By Live Blog10:55 AM

Saturday, September 21, 2013

Developping Android Apps is simple through simple Demo Apps - Part 12: Extract data - using Spinner

Here's the tutorial how to use spinner to extract data in SQLite


[ttaiit.blogspot.com]

Posted By Live Blog5:08 AM

Developping Android Apps is simple through simple Demo Apps - Part 11: Perform Data with SQLite

Here's the tutorial how to perform some operations on data in SQLite Database


[ttaiit.blogspot.com]

Posted By Live Blog5:05 AM

Wednesday, September 18, 2013

Developping Android Apps is simple through simple Demo Apps - Part 10: Save file to external storage

Here's the tutorial how to save data to file in external storage


[ttaiit.blogspot.com]

Posted By Live Blog7:50 PM

Monday, September 16, 2013

Developping Android Apps is simple through simple Demo Apps - Part 9: Save data to file

Here's the tutorial how to save data to file in internal storage


[ttaiit.blogspot.com]

Posted By Live Blog7:43 AM

Saturday, September 14, 2013

Developping Android Apps is simple through simple Demo Apps - Part 8: SharedPreferences

Here's the tutorial how to save data as key-value pairs using SharedPreferences


[ttaiit.blogspot.com]

Posted By Live Blog5:27 AM

Developping Android Apps is simple through simple Demo Apps - Part 7: Multi-Language App

Here's the tutorial how to create multi language application in android


[ttaiit.blogspot.com]

Posted By Live Blog5:25 AM

Friday, September 13, 2013

Developping Android Apps is simple through simple Demo Apps - Part 6: Action Bar Menu

Here's the tutorial how to create Action Bar menu items and handle events for them


[ttaiit.blogspot.com]

Posted By Live Blog12:51 AM

Developping Android Apps is simple through simple Demo Apps - Part 5: Set up Action Bar

Here's the tutorial how to set up Action Bar


[ttaiit.blogspot.com]

Posted By Live Blog12:49 AM

Tuesday, September 10, 2013

Developping Android Apps is simple through simple Demo Apps - Part 4: Send and Receive much Data

Here's the tutorial how to send and receive much data from an activity to others


[ttaiit.blogspot.com]

Posted By Live Blog11:39 AM

Developping Android Apps is simple through simple Demo Apps - Part 3: Send and Receive Data

Here's the tutorial how to send and receive data from activity to activity

[ttaiit.blogspot.com]

Posted By Live Blog2:36 AM

Monday, September 9, 2013

Developping Android Apps is simple through simple Demo Apps - Part 2: Calculation Numbers

See again How to prepare and create first app step-by-step here:
http://ttaiit.blogspot.com/2013/09/step-by-step-to-familiarize-with.html


[ttaiit.blogspot.com]

Posted By Live Blog10:58 AM

Sunday, September 8, 2013

Developping Android Apps is simple through simple Demo Apps - Part 1: Hello Android

See again How to prepare and create first app step-by-step here:
http://ttaiit.blogspot.com/2013/09/step-by-step-to-familiarize-with.html


[ttaiit.blogspot.com]

Posted By Live Blog11:06 AM

Friday, September 6, 2013

[Tut] How to perform AndEngine Examples of Nicolas Gramlich - CustomFontExample



Here're some resources for this part:


Copy 5 font files above to the folder assets/font

Create new class named CustomFontExample in the package org.anddev.andengine.examples of the AndEngineDemo project, here is the code of this class:
package org.anddev.andengine.examples;

import org.anddev.andengine.engine.Engine;
import org.anddev.andengine.engine.camera.Camera;
import org.anddev.andengine.engine.options.EngineOptions;
import org.anddev.andengine.engine.options.EngineOptions.ScreenOrientation;
import org.anddev.andengine.engine.options.resolutionpolicy.RatioResolutionPolicy;
import org.anddev.andengine.entity.scene.Scene;

Posted By Live Blog7:50 PM

[Tut] How to perform AndEngine Examples of Nicolas Gramlich - CoordinateConversionExample



Create a new class named CoordinateConversionExample in the package org.anddev.andengine.examples of the AndEngineDemo project, here is the code of this class:
package org.anddev.andengine.examples;

import static org.anddev.andengine.util.constants.Constants.VERTEX_INDEX_X;
import static org.anddev.andengine.util.constants.Constants.VERTEX_INDEX_Y;

import javax.microedition.khronos.opengles.GL10;

import org.anddev.andengine.engine.Engine;
import org.anddev.andengine.engine.camera.Camera;
import org.anddev.andengine.engine.camera.hud.controls.AnalogOnScreenControl;

Posted By Live Blog10:06 AM

[Tut] How to perform AndEngine Examples of Nicolas Gramlich - CollisionDetectionExample



Create a new class named CollisionDetectionExample in the package org.anddev.andengine.examples of the AndEngineDemo project, here is the code of this class:
package org.anddev.andengine.examples;

import javax.microedition.khronos.opengles.GL10;

import org.anddev.andengine.engine.Engine;
import org.anddev.andengine.engine.camera.Camera;
import org.anddev.andengine.engine.camera.hud.controls.AnalogOnScreenControl;
import org.anddev.andengine.engine.camera.hud.controls.AnalogOnScreenControl.IAnalogOnScreenControlListener;
import org.anddev.andengine.engine.camera.hud.controls.BaseOnScreenControl;

Posted By Live Blog4:39 AM

Thursday, September 5, 2013

[Tut] How to perform AndEngine Examples of Nicolas Gramlich - ChangeableTextExample



Here're some resources for this part:


Create new folder named font in assets folder of the project
Copy font file above to the folder assets/font


Create new class named ChangeableTextExample in the package org.anddev.andengine.examples of the AndEngineDemo project, here is the code of this class:
package org.anddev.andengine.examples;

import org.anddev.andengine.engine.Engine;
import org.anddev.andengine.engine.camera.Camera;
import org.anddev.andengine.engine.handler.timer.ITimerCallback;
import org.anddev.andengine.engine.handler.timer.TimerHandler;
import org.anddev.andengine.engine.options.EngineOptions;
import org.anddev.andengine.engine.options.EngineOptions.ScreenOrientation;
import org.anddev.andengine.engine.options.resolutionpolicy.RatioResolutionPolicy;
import org.anddev.andengine.entity.scene.Scene;

Posted By Live Blog10:31 PM

Wednesday, September 4, 2013

[Tut] How to perform AndEngine Examples of Nicolas Gramlich - AutoParallaxBackgroundExample



Here're some resources for this part:


Copy 4 pictures above to the folder assets/gfx

Create new class named AutoParallaxBackgroundExample in the package org.anddev.andengine.examples of the AndEngineDemo project, here is the code of this class:
package org.anddev.andengine.examples;

import org.anddev.andengine.engine.Engine;
import org.anddev.andengine.engine.camera.Camera;
import org.anddev.andengine.engine.options.EngineOptions;
import org.anddev.andengine.engine.options.EngineOptions.ScreenOrientation;
import org.anddev.andengine.engine.options.resolutionpolicy.RatioResolutionPolicy;

Posted By Live Blog8:59 PM

Step-by-step to familiarize with android development



Some stuff for preparing:

Download the adt (android developer tools) here and extract to some folder. For example, in F:\ like this

Open the folder containing adb.exe, for example: F:\adt-bundle-windows-x86-20130729\sdk\platform-tools

Posted By Live Blog11:57 AM

[Tut] How to perform AndEngine Examples of Nicolas Gramlich - AugmentedRealityHorizonExample (with camera horizontally)



This example is the same as AugmentedRealityExample using 2 files in org.anddev.andengine.extension.augmentedreality package

Create new class named AugmentedRealityHorizonExample in org.anddev.andengine.examples package. Here is the code of this class:
package org.anddev.andengine.examples;

import org.anddev.andengine.engine.Engine;
import org.anddev.andengine.engine.camera.Camera;
import org.anddev.andengine.engine.options.EngineOptions;
import org.anddev.andengine.engine.options.EngineOptions.ScreenOrientation;
import org.anddev.andengine.engine.options.resolutionpolicy.RatioResolutionPolicy;
import org.anddev.andengine.entity.scene.Scene;
import org.anddev.andengine.entity.scene.background.ColorBackground;

Posted By Live Blog9:13 AM

Tuesday, September 3, 2013

[Tut] How to perform AndEngine Examples of Nicolas Gramlich - AugmentedRealityExample (with camera)


andengineaugmentedrealityextension.jar has some problems when using it to implement this example on emulator, so you can use some files to replace the .jar file

Create the package org.anddev.andengine.extension.augmentedreality and create 2 files like this


Here is the code of BaseAugmentedRealityGameActivity class
package org.anddev.andengine.extension.augmentedreality;

import org.anddev.andengine.opengl.view.ComponentSizeChooser;
import org.anddev.andengine.opengl.view.RenderSurfaceView;
import org.anddev.andengine.ui.activity.BaseGameActivity;

import android.graphics.PixelFormat;
import android.os.Bundle;
import android.view.ViewGroup.LayoutParams;

Posted By Live Blog6:49 PM

[Tut] How to perform AndEngine Examples of Nicolas Gramlich - AnimatedSpritesExample


Here're some resources for this part:


Copy 4 pictures above to the folder assets/gfx

Create new class named AnimatedSpritesExample in the package org.anddev.andengine.examples of the AndEngineDemo project, here is the code of this class:
package org.anddev.andengine.examples;

import org.anddev.andengine.engine.Engine;
import org.anddev.andengine.engine.camera.Camera;
import org.anddev.andengine.engine.options.EngineOptions;
import org.anddev.andengine.engine.options.EngineOptions.ScreenOrientation;
import org.anddev.andengine.engine.options.resolutionpolicy.RatioResolutionPolicy;

Posted By Live Blog8:12 AM

[Tut] How to perform AndEngine Examples of Nicolas Gramlich - AnalogOnScreenControlsExample - Multitouch




Here're some resources for this part besides some in previous part (AnalogOnScreenControlExample):


Add andenginemultitouchextension.jar to libs folder of the project

Create new class named AnalogOnScreenControlsExample in the package org.anddev.andengine.examples of the AndEngineDemo project, here is the code of this class:

package org.anddev.andengine.examples;

import javax.microedition.khronos.opengles.GL10;
import org.anddev.andengine.engine.Engine;
import org.anddev.andengine.engine.camera.Camera;
import org.anddev.andengine.engine.camera.hud.controls.AnalogOnScreenControl;
import org.anddev.andengine.engine.camera.hud.controls.AnalogOnScreenControl.IAnalogOnScreenControlListener;

Posted By Live Blog1:20 AM

Monday, September 2, 2013

[Tut] How to perform AndEngine Examples of Nicolas Gramlich - AnalogOnScreenControlExample


Here're some resources for this part:

andengine.jar
face_box.png
onscreen_control_base.png
onscreen_control_knob.png

Create a new android application project named AndEngineDemo
Add andengine.jar to libs folder of the project

Create the folder named gfx under the folder assets, and copy 3 pictures above face_box.pngonscreen_control_base.pngonscreen_control_knob.png to this folder

Create the package: org.anddev.andengine.examples in the src folder of the project

Create a new class named BaseExample in the above package, here is the code of this class:

package org.anddev.andengine.examples;

import org.anddev.andengine.ui.activity.BaseGameActivity;

import android.view.Menu;
import android.view.MenuItem;

/**
 * (c) 2010 Nicolas Gramlich 
 * (c) 2011 Zynga Inc.
 * 

Posted By Live Blog10:18 PM

Sunday, September 1, 2013

Pro Android Web Game Apps - Using HTML5, CSS3 and JavaScript

Dive into game development and create great multiplayer online games with Pro Android Web Game Apps. This hands-on guide covers both the theory and practice of browser game development for the Android platform. You'll use cutting-edge technologies to make game engines in your browser, establish real-time server communication, and create amazing gaming experiences with artificial intelligence and rich media. Bring your knowledge of HTML and JavaScript to the next level with Pro Android Web Game Apps. You are guided through exciting projects that give you firsthand experience with core game app development concepts.


From IT eBooks

Publisher:Apress
By:Juriy Bura, Paul Coates

Download document here

Posted By Live Blog6:44 PM

Learning Android Game Programming - A Hands-On Guide to Building Your First Android Game

The book starts with an up-to-the-minute overview of today's Android mobile games marketplace, reviews each leading genre, and teaches you the foundational concepts of game development. You'll design a simple game, then master every step of game development with AndEngine—the powerful, open source, free game-development engine. Every chapter teaches with sample code you can actually use, including many examples drawn from the published game, Virgins Versus Vampires (V3).


From IT eBooks

Publisher:Addison-Wesley
By:Richard A. Rogers

Download document here

Posted By Live Blog6:39 PM

Android Arcade Game App - A Real World Project - Case Study Approach

Android Arcade Game App: A Real World Project - Case Study Approach is no different in that it walks you through creating an arcade style Prison Break game app-top to bottom - for an Android smartphone or tablet. This book teaches you the unique characteristics and challenges of creating an Arcade style game And it provides you with the full source code for this sample game app.

This book is for Android app developers with at least some experience, preferably with Android game apps.


From IT eBooks

Publisher:Apress
By:J. F. DiMarzio

Download document here

Posted By Live Blog6:32 PM

Android Apps for Absolute Beginners, 2nd Edition

Anybody can start building simple apps for the Android platform, and this book will show you how! Recently updated to include Android Jelly Bean, Android Apps for Absolute Beginners, 2nd Edition takes you through the process of getting your first Android apps up and running using plain English and practical examples.

This book cuts through the fog of jargon and mystery that surrounds Android apps development, and gives you simple, step-by-step instructions to get you started.


From IT eBooks

Publisher:Apress
By:Wallace Jackson
Download document here

Posted By Live Blog6:22 PM

Node.js for PHP Developers - Porting PHP to Node.js

If you're an experienced PHP developer, you already have a head start on learning how to write Node.js code. In this book, author Daniel Howard demonstrates the remarkable similarities between the two languages, and shows you how to port your entire PHP web application to Node.js. By comparing specific PHP features with their Node counterparts, you'll also discover how to refactor and improve existing PHP 4 or PHP 5 source code.

At the end, you'll have two fully functional codebases to provide to your users. You can update both of them simultaneously, using this book as a reference to important aspects of PHP and Node.js.



From IT eBooks

Publisher:O'Reilly Media
By:Daniel Howard
Download document here

Posted By Live Blog2:18 AM

Pro PHP Application Performance - Tuning PHP Web Projects for Maximum Performance

This book contains tips, tricks, and techniques to make new and existing PHP applications much faster and less resource-hungry.

Pro PHP Application Performance will help you understand all the technologies and components which play a role in how well your applications run. When seconds can mean the difference between retaining a user and losing a user, it's important for all of us to have optimization as part of our project roadmap. But what components within your application should you analyze? How should you optimize? And how can you measure how well your application is performing? These are some of the questions that are answered in this book.

Along the way you will also learn the "why" of optimizing. You’ll discover why you should optimize a specific component, why selecting one function over another is beneficial, and how to find and use the optimization tools available to the open source community. You’ll also learn how to deploy caching software as well as web server software.

From IT eBooks

Publisher:Apress
By:Armando Padilla , Tim Hawkins

Download document here

Posted By Live Blog2:07 AM

Saturday, August 31, 2013

AndEngine Start a game tutorial

Full 11 videos playlist that tutors how to start a game for android using AndEngine

By: channel5567

Details here

Posted By Live Blog9:50 AM

Friday, August 30, 2013

AndEngine for Android Game Development Cookbook - Publisher: Packt Publishing - By: Jayme Schroeder, Brian Broyles

Step by step detailed instructions and information on a number of AndEngine functions, including illustrations and diagrams for added support and results. Learn all about the various aspects of AndEngine with prime and practical examples, useful for bringing your ideas to life. Improve the performance of past and future game projects with a collection of useful optimization tips. Structure your applications in a manner that provides a smooth flow from splash screen to level selection, to game play.





From IT eBooks

Download document here

Posted By Live Blog9:15 PM

Thursday, August 29, 2013

Professional Android 4 Application Development - Publisher: Wrox - By: Reto Meier

The fast-growing popularity of Android smartphones and tablets creates a huge opportunities for developers. If you're an experienced developer, you can start creating robust mobile Android apps right away with this professional guide to Android 4 application development. Written by one of Google's lead Android developer advocates, this practical book walks you through a series of hands-on projects that illustrate the features of the Android SDK. That includes all the new APIs introduced in Android 3 and 4, including building for tablets, using the Action Bar, Wi-Fi Direct, NFC Beam, and more.


From IT eBooks

Download document here

Other old version:
Professional Android 2 Application Development: download here
Professional Android Application Development: download here

Posted By Live Blog12:42 AM

Tuesday, August 27, 2013

200 videos: how to create Android application from basic to advanced

Here are 200 videos you can get how to create Android application from basic to advanced by practising all videos. Maybe after complete, you can become an Android expert :)
http://www.youtube.com/playlist?list=PLmxXGWVen28_IL12O2k-yz92OUkdBOySA

Posted By Live Blog9:54 AM

Saturday, August 24, 2013

Some funny pictures of IT

Filled under:

G+, F, T

Scrollbar
New model of Apple:


Posted By Live Blog11:40 PM

Thursday, August 22, 2013

How to run android application faster using android emulator on virtualbox

Filled under: , ,

How to run android application faster using android emulator on virtualbox

Posted By Live Blog10:00 AM

How to use ServerSocket & Socket in Java Network programming

Here's the clip that tutors how to use ServerSocket & Socket class to communicate in java network programming

Posted By Live Blog6:09 AM

Sunday, August 18, 2013

Multi language Form using ResourceManager and Culture Info - C#

Here's the clip that tutors how to create multi-language Form using ResourceManager and Culture Info with C#

Posted By Live Blog10:16 PM

Drag and Drop a picture with C#

Drag Picture with C#
Drag and Drop a picture with C#

Posted By Live Blog4:13 AM

Animation of 3D WPF moving object by changing Coordinate - C# - WPF

CSharp - Create Triangle 3D with WPF
Animation of 3D WPF moving object by changing Coordinate - C# - WPF

Posted By Live Blog4:10 AM

How to use WCF Service - C sharp with SQL Server - VS 2012

Posted By Live Blog2:28 AM

How to use Web Service - ASP.NET C sharp with SQL Server - VS 2012

Here's the clip that tutors how to use Web Service - ASP.NET C sharp with SQL Server - VS 2012

Posted By Live Blog2:26 AM

Wednesday, August 14, 2013

JSF with Entity Classes

Here's the clip that tutors working for JSF with Entity classes

Posted By Live Blog4:31 AM

JSF with DataTable and Form from Entity



Here is the clip that  tutors work for JSF with DataTable and Form from Entity

Posted By Live Blog4:29 AM

Monday, August 12, 2013

[Tutorial]: Web Service with DB, Java Web Application netbeans 7 3 Java DB

Here's the clip that tutors how to work in Web Service with DB Java Web Application using netbeans 7 3 & Java DB

Posted By Live Blog11:40 AM

[Tutorial]: Message-Driven Bean using Topic - Netbeans 7.3 + Java DB

Here's the clip that tutor how to work with Message-Driven Bean using Topic using Netbeans 7.3 & Java DB

Posted By Live Blog11:37 AM

[Tutorial]: Enterprise Application with Message Driven Bean - Netbeans 7.3

Here's the clip that tutor how to work in Enterprise Application with Message Driven Bean using Netbeans 7.3

Posted By Live Blog11:36 AM

[Tutorial]: Remote Session Bean in EJB - Netbeans 7.3

Here's the clip that tutor how to work with remote Session Bean in EJB using Netbeans 7.3

Posted By Live Blog11:34 AM

[Tutorial]: Transaction EJB

Filled under:

Here's the clip that tutor how to work with transaction EJB using Java Derby Database

Posted By Live Blog11:32 AM

[Tutorial]: Enterprise Application with MySQL using Netbeans 7.3

Here is the video clip that tutors how to work in the enterprise application with MySQL using Netbeans 7.3

Posted By Live Blog11:18 AM

Choose an Android item