Just Call that Method and send Email in Android
public void emailSending( String strFile)
{
try {
strFile = "/sdcard/Semiotics/Config/ftpCongif.txt";
File file = new File(strFile);
if (!file.exists())
file.mkdirs();
strFile = strFile ;//+ "/report.html";
//create
[ read more ]
In today’s tutorial I will show you how to open the wifisettings in android programatically.
This code comes handy when the user have not enabled the wifi and you want the user to enable it for your application to work.
Here is the code for that.
1
2
3
4
5
6
7
8
9
10
1
[ read more ]
Send money for FREE
The HTML5 Geolocation API is used to get the geographical position of a user.
Since this can compromise user privacy, the position is not available unless the user approves it.
Browser Support
Internet Explorer 9+, Firefox, Chrome, Safari and Opera support Geoloca
[ read more ]
Nowadays, Quick Response (QR) Codes are becoming more and more useful as they have gone mainstream, thanks to the smart phones. Right from the bus shelter, product packaging, home improvement store,
automobile, a lot of internet websites are integrating QR Codes on their pages to let people q
[ read more ]
Today we will be featuring calendar date pickers to let you output planners, calendars even more easier, most of these date pickers are built on jQuery and jQuery UI (User Interface).
I would consider these date pickers as frameworks with great functionality, but most of them require modifying an
[ read more ]
Is this an exciting time to be developing mobile apps? Short answer: Yes.
With tons of tools already available — and more springing up all the time — there seems to be a solution for any mobile app developer out there (experienced and novices alike).
In this article, we look at 10 solution
[ read more ]
In this new world of smart phones, 3gs, web 2(3).0, twitter, facebook etc we hardly remember the old legacy softwares that we used in early days of technological evolution of computer world. But people come up with some strange, weird or you can say innovative idea. Like this one; the Devel
[ read more ]
Nowadays, Quick Response (QR) Codes are becoming more and more useful as they have gone mainstream, thanks to the smart phones. Right from the bus shelter, product packaging, home improvement store, automobile, a lot of internet websites are integrating QR Codes on their pages to let people quickl
[ read more ]
Top 10 Reasons To Root Your Android Phone People say there are always two classes of technology users; those who take and use technology the way it is brought to them, no questions or complaints, while others who want to indulge deep into the very essence of what’s being offered, and want to empow
[ read more ]
1. Android and Lists
1.1. ListView
The display of elements in a lists is a very common pattern in mobile applications. The user gets a list of items and can scroll through them. If he selects one item, this typically triggers a detailed screen for the selection.
Android provides
[ read more ]