Like us on facebook to get more free pro tricks daily...!

Liked us?

Friday, 25 May 2012

Trick To Make an Android Application

1 comments
Ya... Its true now you can build your own android application for your android phone with little or more knowledge about JAVA language. Android in these days become very popular and effective. The users of android use the thousands of application of android, but what if you can create your own android application and use it.

Following Steps will help you to make an android applications..


Step 1: Get Eclipse

For this tutorial, I’m going to use Eclipse, because frankly it’s the easiest and most hassle-free development tool for Android right now. If you’re a NetBeans programmer, be my guest; but I’ll use Eclipse today.
Download Eclipse IDE for Java Developers (PC or Mac, 92MB)
Note: This is a .zip filewhen you unzip it you will be able to run it wherever you unpacked it – there is no installer. I’d recommend that you put this in “C:\Program Files\” unless you plan on making it a portable application on a USB drive or something.

Step 2: Download The Java JDK

If you don’t have it already, you need to download the Java JDK 6. If you currently have the JDK 5, you should be okay, but there’s really no reason not to update. Just install it by downloading and then running through the setup to get things going. I’d recommend that you just hit next–>next–>finish, rather than doing anything fancy. Once you get things working, you can mess around a bit.

Step 3: Download The Android SDK Tools

Next, you’ll need to get the Android SDK Tools straight from Google. Unpack and install this to a directory you’ll remember – you need to reference this in the next few steps.

Step 4: Configure Eclipse For Your Android

Start Eclipse, and head to ‘Help>Install New Software‘. Hit  “Add…” and for the name, type “Android” and set the link to “https://dl-ssl.google.com/android/eclipse/” (if this doesn’t work, try it with http:// instead of https://).Click “OK” and the following should appear.

how to write Google Android apps
Select both of the resulting packages, and hit next – this will download the Android ADT (Android Development Tools). Go ahead and start the download to obtain these two packages. Restart Eclipse (it should prompt you to on completion of the downloads). We’re almost ready to start coding.

Step 5: Configure The Android SDK

Navigate to the folder you downloaded/unpacked the Android SDK to. In there, you’ll find a file named “SDK Setup.exe.” Start that file – the following dialogue should appear.

how to write Google Android apps
Don’t feel obligated to download every single thing. Could it hurt? Not really. For me, however, I only really want to program for Android 2.1 and 2.01, so those are the only API packages I bothered to get (someday I may pay for my folly, but not today). Either way, get what you want(and you do need to pick one) and hit install. The SDK manager will install it for a little while – go grab a snack.

Step 6: Set Up Your Android Virtual Device (AVD)

Now that you’ve finished yet another painful download, click over to “virtual devices” (still in the SDK Manager). We’re going to create an Android device that will test run your programs for you! Hit “New” to create a new Android device, and put in the specifications that you want it to have. In the screenshot below, you’ll see the options I wanted (that closely mimic that of my Motorola Droid).

how to write Google Android apps
Click “Create AVD” to–well–create your AVD. Select your AVD from the list, and hit “Start” to make sure that you do indeed have a working emulation of an Android phone. After a pretty lengthy start-up wait, it should look something like this.

writing google android apps
Fool around with it and explore for a bit if you want, then close it up so we can get back to work.

Step 7: Configure Eclipse Again

Remember that Android SDK we got earlier? We didn’t do anything with it. Now, it’s time to tell Eclipse where it is so Eclipse can use it as a resource. To do this, open Eclipse and navigate toWindow>Preferences (or on Mac, Eclipse>Preferences) and select the Android tab. As shown below, browse to the location of your Android SDK and hit “Apply“.

writing google android apps
Everything check out so far? Hit “OK” to save everything and let’s go program.

Step 8: Create A New Project

It’s finally time to code some. Navigate to ‘File>New>Other…>Android>Android Project‘, and input a project name, as well as some other details. If you want, copy from my screenshot below. Some of the fields need explaining that simply doesn’t belong here, so if you want to know more specifically, please let me know and maybe I’ll write an article about it.

writing google android apps
Hit “Finish” and the project will be created.

Step 9: Input Your Code

In the tree on the left, navigate to the “src” folder and expand everything. Go to the file with the name of your “Activity” (created in step 8, mine was HelloWorld) and double click it to see the contents. Presently, your code has all of the content in black (with some minor modifications depending on your settings). To make a working “Hello world” program, you need to add the text that is in bold red. Note that there are two bold red “blocks” of code, and you need to add both to make things work.

//==========Start Code============
package com.android.helloandroid;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class HelloAndroid extends Activity {
   /** Called when the activity is first created. */
   @Override
   public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       TextView tv = new TextView(this);
       tv.setText("Hello, Android");
       setContentView(tv);
   }
}
//==========End Code============

I would love to explain all of the code, but that’s not exactly the point of this tutorial; the point is to get your feet off the ground. I know some/most of this is confusing; but it’s just how things are wired.


Step 10: Run Your Program 

Above your code, you’ll see a little green “Play” button (or navigate to ‘Run>Run‘). Click it.When a popup box asks you how to run the application, you’re going to tell it to run as an “Android Application”. It will prompt you to save changes; hit yes.

Now you get to wait an eternity while your virtual device boots up. I’d recommend that you leave it open for the duration of your programming sprees, otherwise you’re going to spend more time watching the Android logo spin than you will watching your program freeze up. Just saying. Efficiency.
After everything’s done loading, your application should upload and start automatically. Which means that right after you “unlock” the device, you’ll be greeted with your first Android program.I only captured the top half of the screen because the rest of it is black.

make google android apps
That’s it, congratulations! The task can be a bit daunting at first; and definitely confusing, but if you stick with it you won’t be disappointed. If you step back and think about it, we only did a few really major things, the rest was just the process of connecting the pieces to make everything work.

If u have any questions about making android application please post in comment section i will help you... 
Read more >>

Tuesday, 22 May 2012

HTML HexaDecimal Color Code Chart

0 comments




#FFFFFF #FFFFCC #FFFF99 #FFFF66 #FFFF33 #FFFF00
#FFCCFF #FFCCCC #FFCC99 #FFCC66 #FFCC33 #FFCC00
#FF99FF #FF99CC #FF9999 #FF9966 #FF9933 #FF9900
#FF66FF #FF66CC #FF6699 #FF6666 #FF6633 #FF6600
#FF33FF #FF33CC #FF3399 #FF3366 #FF3333 #FF3300
#FF00FF #FF00CC #FF0099 #FF0066 #FF0033 #FF0000


#CCFFFF #CCFFCC #CCFF99 #CCFF66 #CCFF33 #CCFF00
#CCCCFF #CCCCCC #CCCC99 #CCCC66 #CCCC33 #CCCC00
#CC99FF #CC99CC #CC9999 #CC9966 #CC9933 #CC9900
#CC66FF #CC66CC #CC6699 #CC6666 #CC6633 #CC6600
#CC33FF #CC33CC #CC3399 #CC3366 #CC3333 #CC3300
#CC00FF #CC00CC #CC0099 #CC0066 #CC0033 #CC0000
 
#99FFFF #99FFCC #99FF99 #99FF66 #99FF33 #99FF00
#99CCFF #99CCCC #99CC99 #99CC66 #99CC33 #99CC00
#9999FF #9999CC #999999 #999966 #999933 #999900
#9966FF #9966CC #996699 #996666 #999933 #999900
#9933FF #9933CC #993399 #993366 #993333 #993300
#9900FF #9900CC #990099 #990066 #990033 #990000



#66FFFF #66FFCC #66FF99 #66FF66 #66FF33 #66FF00
#66CCFF #66CCCC #66CC99 #66CC66 #66CC33 #66CC00
#6699FF #6699CC #669999 #669966 #669933 #669900
#6666FF #6666CC #666699 #666666 #666633 #666600
#6633FF #6633CC #663399 #663366 #663333 #663300
#6600FF #6600CC #660099 #660066 #660033 #660000



#33FFFF #33FFCC #33FF99 #33FF66 #33FF33 #33FF00
#33CCFF #33CCCC #33CC99 #33CC66 #33CC33 #33CC00
#3399FF #3399CC #339999 #339966 #339933 #339900
#3366FF #3366CC #336699 #336666 #336633 #336600
#3333FF #3333CC #333399 #333366 #333333 #333300
#3300FF #3300CC #330099 #330066 #330033 #330000


#00FFFF #00FFCC #00FF99 #00FF66 #00FF33 #00FF00
#00CCFF #00CCCC #00CC99 #00CC66 #00CC33 #00CC00
#0099FF #0099CC #009999 #009966 #009933 #009900
#0066FF #0066CC #006699 #006666 #006633 #006600
#0033FF #0033CC #003399 #003366 #003333 #003300
#0000FF #0000CC #000099 #000066 #000033 #000000
Read more >>

Thursday, 17 May 2012

Social Bookmarking Widget With Egg Sliding Effect

1 comments
I am providing this trick to increase the sharing level of your blogger. Using this social bookmarking widget with egg sliding effect you visitors can share your blog to many social sites such as facebook, google+, twitter, etc.. However it is clear that each and every blog should have an social sharing widget in order to gain attention of huge number of new unique visitors from social networks. Then do you wont feel like the look and feature of various social widgets really matters in order to make your blog visitors feel like sharing your blog content?!!. The look of social widgets on your blog really matters a lot in getting your visitors to share your content on social networks. In today\'s post, I am giving a most beautiful social bookmarking gadget for your blogger blog with egg sliding effect on mouse hover. Then what are you waiting for!!, lets move with the tutorial.

Guide To Adding Social Bookmarking Widget With Egg Sliding Effect :

1. Go to Blogger dashboard --> Template --> Edit Html (Tick Expand widget template).

2. Find(Ctrl+F) </head> and paste the following code just above it.
<script src=\'http://w.sharethis.com/gallery/shareegg/shareegg.js\' type=\'text/javascript\'/><script src=\'http://w.sharethis.com/button/buttons.js\' type=\'text/javascript\'/><script type=\'text/javascript\'>stLight.options({publisher: &quot;bea50586-2b9f-448d-947a-01385f28e305&quot;, onhover:false}); </script><link href=\'http://w.sharethis.com/gallery/shareegg/shareegg.css\' media=\'screen\' rel=\'stylesheet\' type=\'text/css\'/>
3. Now find for </body> and place the following code just above it.
<div style=\'position: fixed; bottom: 2%; left: 2%;\'><div class=\'shareEgg\' id=\'shareThisShareEgg\'/></div><script type=\'text/javascript\'>stlib.shareEgg.createEgg(&#39;shareThisShareEgg&#39;, [&#39;facebook&#39;,&#39;twitter&#39;,&#39;googleplus&#39;,&#39;linkedin&#39;,&#39;blogger&#39;,&#39;stumbleupon&#39;,&#39;sharethis&#39;],{title:&#39;<data:blog.pageTitle/>&#39;,url:&#39;<data:blog.url/>&#39;,theme:&#39;shareegg&#39;});</script>
4. Save your Template and see the effect.

That's all.... Don't forget add comment in comment box...
Read more >>

Tuesday, 15 May 2012

Receive E-Mails Directly In Your Mobile Via SMS

0 comments
Using this trick you can Receive E-Mails Directly In Your Mobile Via SMS.
If you don't want to miss any of your important E-mails, then use this trick to get all your E-mails or Selected E-mails directly to your phone inbox.
This trick is using the facility E-mail Forwarding and its available in all E-mail Service providers.
sms email


Step 1:
Create a Free Account in Way2sms.com.
Step 2:
Select MAIL ALERT tab in waytosms Homepage.
Step 3:
Copy your waytosms E-mail ID.
Step 4:
Login to your GMAIL account.
Step 5:
In Setting page select Forwarding and POP/IMAP.
Step 6:
Paste way2sms E-mail ID in Forwarding box click Add.
Step 7:
Once you click the Send Verification Code, Check your way2sms inbox and Copy the verification code.
Step 8:
Paste the verification code to gmail and click verify.
You all set, Now you can receive all your E-mails directly to your mobile phone's inbox.

This trick is also applicable to yahoo, Hotmail and other Mail providers.
That's all...
Read more >>

Download Xplore File Manager For Android 2.2 and plus

0 comments
Download Xplore File Manager For Android 2.2 and plus

The mind blowing Smartphone file manager X-Plore is now available in android platform and its completely free. After the great success in Symbian and windows phone X-plore now available in Android platform with new and user friendly interface.
The great feature of X-plore in android version is The Dual Pane tree view, it gives ease of access to your disk locations and sub folders this will definitely increases the speed file moving/copying. X-plore gives you Root Access to your system files if you are a Android developer and gives the full freedom to your files. Access to your FTP and FTPS server from X-plore interface and access shared folders via LAN. X-plore have the ability manage your Picasa web album to upload,download,editing all are possible from the interface.
 
ctx_menu

X-plore Feature:
  • Viewing, copying, moving, deleting
  • Hide folders and files
  • Dual-pane tree view
  • Root access  
  • Compressing files and folder (ZIP)
  • FTP and FTPS 
  • LAN 
  • Built-in images, video, audio, text viewers  
  • Hex viewer 
  • Fast Image viewer with zoom and slide to previous/next images in folder 
  • Changing default application handlers 
  • Touch optimized Multi-selection 
  • Search files in folders
  • Opening APK files as ZIP 
  • Send files by Bluetooth, email
  • key shortcuts 
  • Access to Picasa Web albums 
Download X-plore
Read more >>

Facebook Messenger for Mobile (Download Official version)

0 comments
Facebook Released Official Facebook Messenger for Mobile
a faster way to Chat with your Friends.
 
 
Using this messenger you can chat with your friends, and this is the official version so there is no need to fear about your account gets hacked...

  • Reach friends right on their phones Now you can send messages directly to your friends on their mobile phones, so you stay in touch no matter where you go. Message friends or anyone in your mobile contacts.
  • Get and send messages fast With the new standalone Messenger app, now messaging with friends is faster than ever. Messages are delivered instantly, and they're always just a click away.
  • Make plans with groups on the go Group conversations make it easy to message everyone at once and see where your friends are. Don't want to share your location? Turn it off with one click.
Not using a smart phone? You can still reply to messages sent using Messenger by confirming your mobile number.

Read more >>
 

Total Pageviews

Translate

7TeraByte © 2012. All Rights Reserved | DMCA Protected | Back To Top