We moved
We moved. The Developer’s Info bought own domain.
I invite all to visit new site
http://thedevelopersinfo.com
I will not update http://thedevelopersinfo.wordpress.com/
Thanks a lot for your attention.
Using SubActivities in Android
We moved. Please visit this link for this post.
Sometimes you need to run some Activity, do some operation there and return some value to parent Activity. For this situation Android has possibility to run Activity for result. Read more…
Viewing logs and exceptions in Android
We moved. Please visit this link for this post.
I found that there is no logcat console in android plugins for NetBeans and IDEA 8.
But when you develop application you need to see exceptions or see simple log.
I am going to show how easy is to see all these things in system console.
At first you should have installed Android SDK.
At second type in your console:
adb logcat
Note: emulator instance should be working.
IntelliJ IDEA 9 Beta is released
We moved. Please visit this link for this post.
Good news for all who use IDEA. JetBrains announced that anybody can download and try their IDEA 9 Beta.
Some new features:
- Faster Environment
- Improved Code Understanding
- Cleaner, More Productive Coding
- More Efficient User Interface
- More Flexible Project Structure
- Preliminary Java 7 Features Support
- Java EE 6 Support
- Improved Groovy support
- Extended Polyglot Arsenal
- New Web Frameworks Support
- OSGi Application Development
- Enhanced Maven Support
- Android Development
- Better JavaScript and HTML
- Flex Development
- Context Management
- UML Support
- Version Control Integration
Getting formatted string from strings.xml in Android
We moved. Please visit this link for this post.
I found way to get formatted string from strings.xml.
I am going to show how I did it. Please refer to getString method.
strings.xml
<string name="text">My name is %s. I work at FaYna Soft Labs %d months.</string>
Activity
getResources().getString(R.string.text, "Oleg Mazurashu", 7)
Example:
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
/**
* Activity which shows how to use formatted string from strings.xml
*
* @author FaYna Soft Labs
*/
public class Main extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView tv = (TextView) findViewById(R.id.textId);
tv.setText(getResources().getString(R.string.text, "Oleg Mazurashu", 7));
}
}
I like this approach.
PassGen 1.2.0 is released
We moved. Please visit this link for this post.
FaYna Soft Labs updated PassGen application to version 1.2.0
PassGen – is a powerful and useful password generate tool. It allows to generate any password in very easy way. It has user friendly interface. User should select one from three allowed password templates:
- Complex – all allowed data in passwords
- Alpanumeric – digits 0-9 and symbols A-Z and a-z
- Alpabetical – symbols A-Z and a-z
Also PassGen has several additional functions:
- Favorite passwords – this place is for user’s favorite passwords. Here user can add and delete passwords
- Possibility to copy selected passwords to clipboard
- Possibility to send selected passwords through email (email client required)
Once user can generate 99 passwords with 99 characters.
Application is compatible with Android 1.5 and Android 1.6.
Price: $0.99
For downloading from Android Market:
