Happy New 2010 Year from The Developer’s Info

Thanks to everyone for your support and encouragement this year.

See you in the . . . → Read More: Happy New 2010 Year from The Developer’s Info

  • Share/Bookmark

Changing font in Output window in NetBeans

NetBeans allows to change font in Output window. It is very easy. You need only:

right mouse click in Output window
select Larger or Smaller font
open Choose font dialog

Here I select Vivaldi font with size 18

If you would like to use default font need to do the same operations (open Choose font dialog and click Default font button)

As . . . → Read More: Changing font in Output window in NetBeans

  • Share/Bookmark

Removing trailing spaces in NetBeans

Extra spaces is a problem in every code. Personally I always delete trailing spaces in my code. NetBeans has possibility to delete trailing spaces:
Source->Remove Trailing Spaces

Note: In my point of view for this feature need to add possibility to run it when user saves file as in AnyEdit plugin . . . → Read More: Removing trailing spaces in NetBeans

  • Share/Bookmark

Checking Android SDK version

I want to show how you can get Android SDK version from code.
It is very simple:

String version = Build.VERSION.RELEASE;

This one returns SDK version (2.0.1, 2.0, 1.6).

int apiLevel = Build.VERSION.SDK_INT;

This one returns API Level (6, 5, 4).

 

If you’d like to get the latest posts as soon as they’re published, subscribe to . . . → Read More: Checking Android SDK version

  • Share/Bookmark

Using Sony-Ericsson XPERIA X10 add-on for the Android SDK

Sony-Ericsson published XPERIA X10 addon for Android SDK and I tried to use it in my work.
All details you can find here. Continue reading Using Sony-Ericsson XPERIA X10 add-on for the Android SDK

  • Share/Bookmark

Checking if camera presents in Android device

Today I tried some ideas with camera in Android and found that there is an easy way to check if camera presents in Android device. Continue reading Checking if camera presents in Android device

  • Share/Bookmark

Image rotating in Android

There is an easy way for image rotating in Android from code. Continue reading Image rotating in Android

  • Share/Bookmark

Image saving to the filesystem in Android

Sometimes after some operations with image you want to save this image to the filesystem. How? Can I use FileOutputStream for this operation? Sure, you can. Continue reading Image saving to the filesystem in Android

  • Share/Bookmark

Starting applications after boot up in Android

There are applications which should starts automatically after the Android phone is booted up.
I am going to show how to create such application. Continue reading Starting applications after boot up in Android

  • Share/Bookmark

Android Developer Dashboard shares information about deployed Android-powered devices

Today I read latest post from Android Developers Blog. Here I found a new feature.

Device dashboard which provides information about deployed Android-powered devices that is helpful to developers as they build and update their . . . → Read More: Android Developer Dashboard shares information about deployed Android-powered devices

  • Share/Bookmark