Showing posts with label android apps. Show all posts
Showing posts with label android apps. Show all posts

Friday, 7 June 2013

Top 10 best Social Networking Apps for Android

There has a large of Social Networks apps in the android market, and as everyone knows, Social networks, allow us to share some or all facets of our lives with our friends, our family. It is also the best way to share your stuff with the whole world & to get the updates about anything happened in the world. Today, we are going to share you a good collection of best Social Networking apps for android to get more out of social networking.

1.  Facebook
There is no doubt that Facebook is the number one social networking site in the world at the present time. Facebook allows users to share just about anything from status updates to news stories to current locations, and the Android app extends that functionality. With Facebook for Android, users can do just about anything they can do on the website, as well as post specific location-based info to the site. You can also share photos and videos with this app.

2.  Twitter
With Twitter, you can watch the world unfold like never before. By installing Twitter on your android phone, you can get real-time stories, pictures, videos, conversations, ideas, and inspiration all in your timeline. You can follow people and your interests to get unfiltered access and unique behind-the-scenes perspectives. It also makes what they call “Discovery” very easy through search and trending topics.

3.  LinkedIn
The new Android app makes it even easier to connect and grow your network, engage with professional content and gain insights right from the stream.

LinkedIn allows you to upload your resume, listing education, experience, achievement, and much more. Others can also add recommendations as well as contact you for job opportunities. The Android app will allow you to view profiles and your news feed, as well as sync your LinkedIn calendar with your device’s calendar.

4.  Google+
Google+ is Google’s latest attempt at social networking, and it seems like this time they really got it right.

Beyond features that Facebook already offers – like status, links, photos, and location – Google+ offers a few really cool extras – including Hangouts, which are real-time, multi-person video chats. The app allows you to check out what’s hot stream to see trending topics and view nearby stream to see what people near your location are saying.

5.  Instagram
100 million users love Instagram! It's a free, fun, and simple way to make and share gorgeous photos on your Android. Instagram for android allows you to take photos, apply filters, and share them to your Instagram followers as well as with your friends on Facebook, Twitter, and Tumblr.

6.  Foursquare
Foursquare, one popularized location-based sharing app, allow you to find out where friends and locals love to go. Wherever you are in the world, open up Foursquare to see where your friends like to go, and get recommendations for the best restaurants, bars, and sights in the area. We analyze our millions of tips, likes, and over 3.5 billion check-ins to show you the most-loved places in any city.

7.  Pinterest
Pinterest is a tool to find your inspiration and share it with others. Use it to collect things you love, organize and plan important projects, and more. With Pinterest for android, you can pin images from around the web, Explore pins and boards you’re interested in and Get inspiration from DIY, Travel, Food and other categories. You can also pin with your camera.  Browsing pinboards is a fun way to discover new things and get inspiration from people who share your interests.

8.  Yahoo! Messenger
Yahoo is the one the popular social network and it possesses most of the ingredients necessary to make a great IM experience. With Yahoo Messenger for Android, you can chat with Facebook friends, Free international SMS ††, Share Photos & Video, and Chat with Windows Live friends. It also allows you send camera and gallery photos and express yourself with emoticons and receive pix from your IM friends.

9.  Path
Path is a personal social network designed to help you be closer with family and friends. Now with Path 3, they have added private messaging and stickers so you can chat instantly with the ones you love. Path takes the social network concept and makes it even more personalized. Path is meant for you to connect with family and close friends, limiting you to 150 connections.

10.  Imo.im
Imo.im is a convenient way to stay on top of your instant message conversations. The app is available for all major mobile phones and allows you to keep in touch with friends through Facebook Chat, Google Talk, Skype, MSN, ICQ/AIM, Yahoo, Jabber, Hyves, VKontakte, Myspace, and Steam. You can also share your location with friends using Google Maps and Places and Discover new people and content tailored to your interests.

Wednesday, 15 May 2013

Activities with same intent filter name

We already learn that, an intent filter is necessary for invoking an activity using intent object. Assume that  there is more than one activities present with same intent filter name. In this post i am going to explain this situation with a complete working example. If there is more than one activities with same intent filter name, than the android system will show a dialog window that prompt you to choose an appropriate activity to complete the action.   
In this example there are two activities SecondActivity and ThirdActivity with same intent filter name as "common_filter". The manifest code segment for this activities are shown bellow. 
1:   <activity  
2: android:name="com.testdemo.SecondActivity"
3: android:label="@string/title_activity_second" >
4: <intent-filter>
5: <action android:name="common_filter" />
6: <category android:name="android.intent.category.DEFAULT" />
7: </intent-filter>
8: </activity>
9: <activity
10: android:name="com.testdemo.ThirdActivity"
11: android:label="@string/title_activity_third"
12: >
13: <intent-filter>
14: <action android:name="common_filter" />
15: <category android:name="android.intent.category.DEFAULT" />
16: </intent-filter>
17: </activity>

MainActivity.java
1:  package com.testdemo;  
2: import android.app.Activity;
3: import android.content.Intent;
4: import android.os.Bundle;
5: import android.view.Menu;
6: import android.view.View;
7: import android.view.View.OnClickListener;
8: import android.widget.Button;
9: public class MainActivity extends Activity {
10: Button bn;
11: @Override
12: protected void onCreate(Bundle savedInstanceState) {
13: super.onCreate(savedInstanceState);
14: setContentView(R.layout.activity_main);
15: bn= (Button) findViewById(R.id.button1);
16: bn.setOnClickListener(new OnClickListener() {
17: @Override
18: public void onClick(View v) {
19: // TODO Auto-generated method stub
20: Intent i = new Intent("common_filter");
21: startActivity(i);
22: }
23: });
24: }
25: @Override
26: public boolean onCreateOptionsMenu(Menu menu) {
27: // Inflate the menu; this adds items to the action bar if it is present.
28: getMenuInflater().inflate(R.menu.main, menu);
29: return true;
30: }
31: }

SecondActivity.java
1:  package com.testdemo;  
2: import android.os.Bundle;
3: import android.app.Activity;
4: import android.view.Menu;
5: public class SecondActivity extends Activity {
6: @Override
7: protected void onCreate(Bundle savedInstanceState) {
8: super.onCreate(savedInstanceState);
9: setContentView(R.layout.activity_second);
10: }
11: @Override
12: public boolean onCreateOptionsMenu(Menu menu) {
13: // Inflate the menu; this adds items to the action bar if it is present.
14: getMenuInflater().inflate(R.menu.second, menu);
15: return true;
16: }
17: }

ThirdActivity.java
1:  package com.testdemo;  
2: import android.os.Bundle;
3: import android.app.Activity;
4: import android.view.Menu;
5: public class ThirdActivity extends Activity {
6: @Override
7: protected void onCreate(Bundle savedInstanceState) {
8: super.onCreate(savedInstanceState);
9: setContentView(R.layout.activity_third);
10: }
11: @Override
12: public boolean onCreateOptionsMenu(Menu menu) {
13: // Inflate the menu; this adds items to the action bar if it is present.
14: getMenuInflater().inflate(R.menu.third, menu);
15: return true;
16: }
17: }

AndroidManifest.xml
1:  <?xml version="1.0" encoding="utf-8"?>  
2: <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3: package="com.testdemo"
4: android:versionCode="1"
5: android:versionName="1.0" >
6: <uses-sdk
7: android:minSdkVersion="8"
8: android:targetSdkVersion="17" />
9: <application
10: android:allowBackup="true"
11: android:icon="@drawable/ic_launcher"
12: android:label="@string/app_name"
13: android:theme="@style/AppTheme" >
14: <activity
15: android:name="com.testdemo.MainActivity"
16: android:label="@string/app_name" >
17: <intent-filter>
18: <action android:name="android.intent.action.MAIN" />
19: <category android:name="android.intent.category.LAUNCHER" />
20: </intent-filter>
21: </activity>
22: <activity
23: android:name="com.testdemo.SecondActivity"
24: android:label="@string/title_activity_second" >
25: <intent-filter>
26: <action android:name="common_filter" />
27: <category android:name="android.intent.category.DEFAULT" />
28: </intent-filter>
29: </activity>
30: <activity
31: android:name="com.testdemo.ThirdActivity"
32: android:label="@string/title_activity_third"
33: >
34: <intent-filter>
35: <action android:name="common_filter" />
36: <category android:name="android.intent.category.DEFAULT" />
37: </intent-filter>
38: </activity>
39: </application>
40: </manifest>



Saturday, 16 February 2013

8 Awesome Android Apps for Discovering New Things

Today, smartphone play a very important role in our daily life, such as watching videos, play games or simple make video calls with our friends and so on. But apart from those common functions, we can also use our phone to breaking from the norm and discovering new things by using variety of apps in the app store to make our life easier. Here I will present you a collection of some excellent android apps for discovering New Things.

1. Foodspotting / Discover New Food
Foodspotting / Discover New Food
On the hunt for a delicious dinner? Then you can’t miss this kind of food app. Foodspotting is a visual guide to good food and where to find it and it lets you look for your next meal based on the biggest indicator of all: photos. With this app, you can discover nearby dishes, find whatever you’re craving & see what’s good at any restaurant.

2. Slacker / Discover New Tunes
Slacker / Discover New Tunes
Slacker is the most complete music service on Android. With millions of songs, hundreds of expert-programmed stations and endless personalization, Slacker gives listeners anytime, anywhere access to the world’s best music and entertainment. You can also create your own particular stations, and block artists or songs you hear that don’t rock your world.

3. Waze / Discover the Best Way To Get There
 Waze / Discover the Best Way To Get There
Waze is the app guides you around traffic and let you get the best route to your destination, and it also helps you find the cheapest gas for your trip while you’re on your way. Now Waze makes it fun and simple to meet up and coordinate with friends on the road. Easily meet up, pick up friends, share your drive and ETA, and see who's headed to your destination too!

4. Flipboard / Discover Information
Flipboard / Discover Information
Flipboard brings together world news and social news in a beautiful magazine designed for your Android phone and tablet. The app turns your news, Twitter and Facebook feeds into your own personal magazine, and makes it easy to discover new content through its curated channels focused on everything from tech to fashion.

5. Highlight / Discover New People
Highlight / Discover New People
As you go about your day, Highlight uses Facebook and LinkedIn to help you find mutual friends and shared interests, makes it easy to meet new people by notifying you when friends and other interesting people are nearby. Highlight gives you a sixth sense, showing you hidden connections and making your day more fun. And now they are working to add more login options like Google+ or others.

6. Shazam / Discover What That Song Is
Shazam / Discover What That Song Is
Hear a song and need to know what it is? Shazam can help you identify what song is playing on the jukebox while you’re out with friends. Once you tag a song you can instantly watch the music video for the tune on YouTube, share tracks with friends, or purchase the song to listen to on your device.

7. Hooked / Discover new Games, Game recommendations!
Hooked / Discover new Games
If you are a crazy game lover, then you can’t miss this app. With over 200,000 games, Google Play isn't personalized to you. Hooked uses proprietary technology to match unique, well thought out and fun games to your personal game play style.

8. Appreciate / Discover new Android App
Appreciate / Discover new Android App
Appreciate is the first Android app on the market that gives you fully personalized app pages and app recommendations. With this app, you can find users in the community with similar application taste and exchange apps. Find great apps on the market with the help of your friends and Facebook Friends.


Thursday, 13 December 2012

How to watch NBA Christmas Games online, on Android device

It’s the exciting time of year for all basketball fans again. As the regular season has kicked off for a while, NBA Christmas day is just around the corner, which is always the NBA’s biggest day of the regular season. LeBron James was named the Finals MVP as he won his first NBA championship in Miami Heat, after ran all over the Oklahoma City Thunder last NBA Finals, and this Christmas, the Thunder will take on the Heat at American Airlines Arena . There is no doubt that everyone is looking forward to this basketball game on Christmas Day.


For someone, they like catch live streaming NBA action on the Internet or TV, but with the popularity of mobile device like smartphone and tablets, some like watch on the go. So Here I have collected a list of apps as a guide for watching NBA on Android mobile devices.

NBA Game Time 2012-13

I am sure that many of you may know NBA Game time, a mobile application that gets revamped and re-released each year that allows us to keep up with all the latest scores, highlights and news from our favorite teams. So here I put this app in the first place.

Note: You should upgrade the free app via NBA League Pass Mobile in order to watch live regular-season games, NBA League Pass Mobile lets you watch live NBA action from your iPhone or Android device for $39.99. It essentially the same deal as NBA League Pass Broadband but for your phone. Be sure you understand the blackout rules before purchasing because you won’t get local teams or any games broadcast nationally on ESPN, TNT, ABC, etc.

The app is also fit for iPhone, iPad.

Some Official Websites for NBA Games:

1. NBA TNT Overtime
This website is provided by Cable network TNT; yet, this time you can watch NBA streaming without cable subscription, only broadband connection is required.
This online streaming NBA differs from TV as the games are broadcasted on an interactive 4-screen interface, with each of the 4 providing a different camera angle.

2. NBA.com
NBA.com is the official site of the National Basketball Association, which offers you news, features, multimedia, player profiles, chat transcripts, schedules and statistics, everything about NBA. It's updated official website for NBA Games of regular season, playoffs and the finals. And of course, you can watch NBA game live on this website.

3. YouTube NBA Channel
This could be another option for NBA games. If you are a YouTube lover, I think the website is your choice. You can also download your favorite NBA video to enjoy.

4. ESPN NBA 
ESPN airs NBA games on Wednesdays, Fridays and Sundays. And Most NBA games on the ESPN cable network air on Fridays at 8:00 p.m ET and 7:30 p.m PT as part of "Coast to Coast" doubleheaders. WatchESPN.com is free to viewers who log in with an active and paid-up cable TV subscription.

Sunday, 16 September 2012

6 apps you should not miss in the app store

There are new Apps updated every day in the app store, people feel tough to keep up with all the new apps release every week. Thanks to mashable, which take care of that for you, creating a roundup each weekend of our favorite new and updated apps.

Here is the new and updated apps earlier recommend to you.


1.  Better Homes and Gardens Launches ‘Paint Anything’ App


Paint is one of the easiest ways to refresh your home. This “How to Paint Anything” app is packed with 50+ step-by-step painting projects -- from accessories to wall art to furniture. These fun projects will bring do-it-yourself flair to your home decor. Learn how to revamp old dressers and cabinets with colorful paint, or how to turn plain dishware into something unique and fun, and even how to make plain curtains into custom window treatments. 
Plus, you’ll discover plenty of tips, advice, and videos on painting techniques, tools, and choosing colors. 

2.  BlackBerry Updates Facebook App to Support Birthday, Event Alerts



Facebook® for BlackBerry® smartphones makes it even easier to connect with friends and share your news while you’re on the go. Discover all the great ways Facebook works with your BlackBerry smartphone to help you stay connected and on top of your social life.
What’s new:
• Facebook Events and Birthdays Support
• Enhanced Calendar Integration for Birthdays 

3.  City Guides, Offline Maps

Android version  , iPhone version  
Apps can be great when it comes to traveling, but many require you to be connected to the web to really take advantage of them. Stay.com’s City Guide, Offline Maps offers travel suggestions for over 120 cities offline. Available for iOS and Android, when you are connected to the web the app also offers travel advice from other users and your friends, and has Facebook integration so you can connect with buddies about your travels.

4.  St. Louis Rans Fisher Stache

Android version , iPhone version

New Rams head coach Jeff Fisher doesn’t just bring 147 career wins, a Super Bowl XXXV appearance and a wealth of football knowledge with him to St. Louis: He also brings along an epic moustache. Available for iOS and Android, the Fisher Stache app lets you get in on the Ram’s celebration by getting a moustache of your own.



5.  Sonar for Android


Find friends and like-minded people nearby. Have more fun navigating the world!
The best way to connect and share with friends and like-minded people nearby, Sonar has been called a “Must-Have” by CNN and an “Essential Tool” by WIRED Magazine. By alerting you to friends nearby and other interesting people, Sonar reveals small world moments you’d have otherwise missed.

6.The Hunger Games Adventures


Already a successful game on Facebook,The Hunger Games Adventures made its way to iPad this week. The adventure game has you embark on an adventure outside the gates of District 12 and includes all your favorite characters from the movie and book as well as some new ones.


If you have some good apps to recommend to us,welcome to leave your opinion below.Thanks  advance. 


Related article: