TechnoTalkative

Main menu

Skip to content
  • Android
  • Windows Phone
  • About Me
  • Contact

Daily Archives: June 7, 2011

Android – Hide Title bar and Notification bar

June 7, 2011

Hi, Here i am going to discuss about on making activity full-screen by hiding Title bar and notification bar from the activity.  So question here is: Android – How do we hide Title bar? //write before setContentView() this.requestWindowFeature(Window.FEATURE_NO_TITLE); Android – … Continue reading →

Posted in Android, Useful Utility | Reply

Android – Get Brand name and Device name

June 7, 2011

Hi, Here i am going to show how to fetch some device values: 1. Brand name of Android device (SDK Says:  The Brand the software is customized, if any) => Build.BRAND 2. Model number of Android device (SDK Says: Device name … Continue reading →

Posted in Android, Useful Utility | Replies: 1

Android – Retrieve phone number

June 7, 2011

Hi, How do we fetch phone number to use inside our application? By using below code we can retrieve the phone number: TelephonyManager mTelephonyMgr; mTelephonyMgr = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); String mblNumber = mTelephonyMgr.getLine1Number(); Note: Dont forget to add READ_PHONE_STATE permission to … Continue reading →

Posted in Android, Useful Utility | Reply

Android – Retrieve Device's SDK version and API level

June 7, 2011

Hi, Ques:How do i fetch device’s SDK version and API level number? Ans: Build.VERSION.SDK_INT => To know API Level number i.e. 7,8,9 Build.VERSION.RELEASE => To know version code i.e. 2.1, 2.2, 2.3, 3.0 For your info, // SDK_INT is only … Continue reading →

Posted in Android, Useful Utility | Reply

Android – Sending SMS from android application – Method 1

June 7, 2011

Hi, Here i am going to discuss about to send SMS from your android application. Basically there are 2 ways by which we can send sms: Open native SMS composer write your message and send from your android application

Posted in Android, MCA GTU Mobile Computing, SMS | Replies: 7

Android – Sending SMS from android application – Method 2

June 7, 2011

Hi, Here i am going to discuss about to send SMS from your android application. Basically there are 2 ways by which we can send sms: Open native SMS composer write your message and send from your android application

Posted in Android, MCA GTU Mobile Computing, SMS | Replies: 8

Mobile Trick – Disable Data connection

June 7, 2011

Hi, Did you ever suffer from unwanted charges charged for unwanted data connection, then here is  solution for you to “Disable data connection” from your mobile phone. Just follow the below steps: 1. Type *#*#4636*#*# 2. Now you have a … Continue reading →

Posted in Tips and Tricks | Replies: 2
Follow @pareshmayani Google+

Search

Get notified when a new post is published.

Join 95 other subscribers

Categories

Archives

  • June 2013 (2)
  • April 2013 (1)
  • January 2013 (2)
  • December 2012 (1)
  • November 2012 (9)
  • October 2012 (3)
  • September 2012 (2)
  • August 2012 (4)
  • June 2012 (1)
  • April 2012 (4)
  • March 2012 (6)
  • February 2012 (4)
  • January 2012 (1)
  • December 2011 (9)
  • November 2011 (18)
  • October 2011 (6)
  • September 2011 (8)
  • August 2011 (13)
  • July 2011 (20)
  • June 2011 (32)
  • May 2011 (5)
  • April 2011 (7)
  • March 2011 (3)
  • February 2011 (5)
  • January 2011 (1)
  • December 2010 (4)
  • November 2010 (1)
  • October 2010 (2)
  • March 2010 (2)

Blogroll

  • Androd App Patterns
  • Android niceties
  • Android UI Patterns
  • Android User Interface | User Experience
  • Grokking Android
  • My Life With Android
  • Styling Android
Copyright © TechnoTalkative.