We moved. Please visit this link for this post.
FaYna Soft Labs updated Easy Converter application to version 1.2.0.
Easy Converter – is all in one Android converter which allows to convert
- Temperature
- Currency
- Weight
- Length
- Area
- Volume
Easy Converter has user friendly interface and belongs to the type of applications that are easy to use.
Also this tool has possibility to edit existing and add new data.
Present great feature, possibility to copy results to clipboard.
Application is compatible with Android 1.6 (Donut).
Screenshots.
Price: $0.99
If you find a bug or want to request a feature please contact us. We want to make this application better.
For downloading from Android Market:

We moved. Please visit this link for this post.
FaYna Soft Labs just updated Calendar Details widget to version 1.2.0.
Calendar Details widget - is a simple widget which shows additional information about current date

Now application is compatible with Android 1.6 (Donut).
Price: $0.99
For downloading from Android Market:

We moved. Please visit this link for this post.
There are 2 approaches:
- Delete widget from emulator/device
- Delete widget from Home screen
I will explain second, how to delete widget from Home screen.
It will not the code snippet, it will use case.
There are 2 steps:
- Tap widget and hold your finger down. You will notice that the “slider” that normally brings up all of your installed programs turns into a “Trash can”.
- Drag the widget to that “Trash can”. Both the widget and the “Trash can” will turn red. At this point, let go of the widget (release your finger). That will “drop” it in the trash.
Note: this does not actually uninstall the widget. It just removes it from your Home screen.
That’s all. The widget has been removed from your Home screen.
We moved. Please visit this link for this post.
I showed previously how to create an Options menu and how to add Menu item to it.
Now I am going to show how to handle options menu item selection.
I will show code snippet and after whole example. Read more…
We moved. Please visit this link for this post.
It’s important to test your application on different layout orientations and also on different screen sizes.
I am going to show how to change your emulator orientation.
The solution is next:
Switch to previous layout orientation (for example, portrait, landscape) - KEYPAD_7 or Ctrl-F11
Switch to next layout orientation (for example, portrait, landscape) - KEYPAD_9 or Ctrl-F12
Note:
If you prefer to use KEYPAD_7 or KEYPAD_9 you need to turn off your Num Lock.
As you see it is very easy.
We moved. Please visit this link for this post.
From this post I am going to start series posts about Menu. Menu is very important. I will try to show all actions with menus in next posts.
Maybe it will be better to write one big article, but there are 2 problems from my side.
- Now I have no free time. All team works hard because we want to publish our updated applications in earlier November
- I like short but useful examples in manner how to Read more…
We moved. Please visit this link for this post.
I am going to show how to rename file or directory in Java.
import java.io.File;
/**
* This class shows how to rename file or directory
* @author FaYna Soft Labs
*/
public class Main {
public static void main(String[] args) {
// File (or directory) with old name
File oldFile = new File("C:/sampleDir");
// File (or directory) with new name
File newFile = new File("C:/sample");
// Rename file (or directory)
boolean success = oldFile.renameTo(newFile);
if (!success) {
System.err.println("Error");
}
}
}
You can copy this example to your IDE and use it for your objective
We moved. Please visit this link for this post.
In Wallpaper Changer application version 1.2.* we added feature which allows to move file in application’s file manager.
I want to show how we did it. As you see this post refer to core Java not Android. That’s why I will post code with method main.
Example is simple, just copy it and use.
import java.io.File;
/**
* This class represents how need to move file or directory to other directory
* @author FaYna Soft Labs
*/
public class Main {
public static void main(String[] args) {
// File (or directory) to be moved
File file = new File("C:/sampleDir/sample.data");
// Destination directory
File dir = new File("C:/sampleDir/otherDir");
// Move file to new directory
boolean success = file.renameTo(new File(dir, file.getName()));
if (!success) {
System.err.println("Error");
}
}
}
That’s all, you moved file/directory.
We moved. Please visit this link for this post.
Toast is very good solution when need to notify user about something.
For example I always show Toast to the user when it wants to open SDCard which is not mounted (best practice).
I am going to show simple Toast which shows on the center of activity. Read more…
We moved. Please visit this link for this post.
Very good news for developers who used NetBeans IDE.
NetBeans team announced that everyone can download beta version of NetBeans 6.8.
Release Highlights:
Java Enterprise Edition 6
- JavaServer Faces 2.0 for web interfaces and the ability to use EJBs in web applications
- Java Persistence JPA 2.0 and RESTful web services support
- Broader use of annotations instead of deployment descriptors
- Deployment, debugging and profiling with GlassFish v3
- JavaServer Faces 2.0 (Facelets)
- Code completion, error hints, namespace completion, documentation popups, and tag auto-import for Facelets
- Editor support for Facelets libraries, composite components, expression language
JavaFX
- Support for JavaFX SDK 1.2.1
- Improved navigation, code completion, and hints
PHP
- Full PHP 5.3 support
- Symfony Framework support
Kenai.com: Connected Developer
- Full JIRA support
- Improved issue tracker integration
Maven
- Improved support for Java EE 6, Groovy, Scala projects
- Customizable dependency exclusion in dependency graph
Ruby
- Support for JRuby 1.3.1, Ruby 1.9 debugging, and RSpec 1.2.7
- Improved rename refactoring, type inference, and navigation
C/C++
- Profiling: New tools for I/O Monitoring, Thread Analysis and Race Detection
- Faster synchronization during remote development
If you want to know more about beta release visit this page.
For downloading visit this one.