Skip to content
TechnoTalkative Logo TechnoTalkative

All About Tech Trends and Software Development Updates

  • Home
  • About
  • facebook.com
  • twitter.com
  • t.me
  • instagram.com
  • youtube.com
Subscribe

Android

  • Home
  • Android
  • Page 27
Posted inAndroid

Android – Making phone call – ACTION_CALL Intent

try { Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:+98765")); startActivity(intent); } catch (Exception e) { Log.e("Demo application", "Failed to invoke call", e); } Don't forget to add this permission into the…
Posted by Paresh Mayani December 7, 2010
Posted inAndroid

Android – Send email from your Android application – ACTION_SEND intent

The below code can be tested with the real device: But while testing it with an emulator, you need to make correction with: i.setType("text/plain");
Posted by Paresh Mayani December 7, 2010
Posted inAndroid

Unix – Fetching ASCII Code of any Character and Character Value from the ASCII Code

This is the demo of fetching ASCII code of any character value and vice versa (Character value from the ASCII Code). The below is the demo for the "A" and…
Posted by Paresh Mayani December 1, 2010
Posted inAndroid

Android – Working With Calendar and Managing Compatibility With Froyo

Today i came across an article, in that article i found a great thing that the Calendar URI in FROYO 2.2 version is changed from content://calendar/calendars to content://com.android.calendar/calendars. To manage…
Posted by Paresh Mayani November 25, 2010
Posted inAndroid

Unix – Evaluate Floating point Arithmetic Operation in Unix

Problem: How to evaluate Floating point Arithmetic operation in Unix?Solution:In UNIX, as we know, 'expr' is used to evaluate arithmetic operation but it is not used to evaluate floating point…
Posted by Paresh Mayani October 29, 2010
Posted inAndroid

Unix – Calendar Sept 1752 – A surprising Fact in Unix

I have found one amazing fact in Unix. i.e. 11 days missing in the month of September, 1752. Why it is happened in the month of September 1752? The Gregorian Reformation is…
Posted by Paresh Mayani October 28, 2010
Posted inAndroid

How to start with Android ? What softwares are Required ?

Software Requirement to start development with Android Eclipse 3.4 (Ganymede) or greater, If you need to install or update Eclipse, you can download it from http://www.eclipse.org/downloads/. JDK 5 or JDK…
Posted by Paresh Mayani March 15, 2010

Posts pagination

Previous page 1 … 25 26 27 28 Next page
Search
Explore Topics
  • Android 190
  • Flutter 2
  • Tech 3
About
  • About TechnoTalkative
Contact Us
  • Write For Us
  • Contact
Terms
  • TERMS AND CONDITIONS
  • DISCLAIMER
  • Privacy Policy
Copyright 2011-2026 — TechnoTalkative. All rights reserved.
Scroll to Top