Saturday, October 29, 2011

Mobile First

Everybody knows that a mobile application must run on a device with a reduced environment. So, we need use each resource in the best possible way. When you are designing and developing software for mobile devices you must think about more usable user interfaces and efficient processes, therefore you become capable to do better things with less resources. I think that Luke Wroblewski and you too are agree with me about that thought. Luke is an UI designer expert with pretty interesting approach about how to do better software doing mobile first. Check out it!! http://www.lukew.com/presos/preso.asp?26

Monday, August 15, 2011

Apps-Builder

Another mobile apps creator apps-builder what allow us build simple app for iOS, Android and Windows Phone.You can use templates, customize images and other stuff and publish your app in Android Market, AppStore and Windos Phone market. It's great for non programmers people who have a good idea but don't want to program or don't have the time to learn how to program.

Sunday, August 14, 2011

DudaMobile

DudaMobile is useful when you want to make a friendly mobile website in just minutes. It works pretty well for simple websites like http://www.androiduipatterns.com/.

Friday, June 3, 2011

¿How to capture a screenshot programmatically ?

View myView = findViewById(R.id.form);
Bitmap bmp = Bitmap.createBitmap( myView.getMeasuredWidth() , myView.getMeasuredHeight() , Config.ARGB_8888);
Canvas canvas = new Canvas(bmp);
myView.draw(canvas);
try {
FileOutputStream out = new FileOutputStream( "/sdcard/screen.jpg" );
bmp.compress(Bitmap.CompressFormat.JPEG, 100, out);
out.flush();
out.close();
} catch (Exception e) {

e.printStackTrace();

}

Thursday, May 12, 2011

Google I/O 2011: Android Protips: Advanced Topics for Expert Android App Developers

Google I/O 2011 sessions

Some advices to take into account when you are devoloping applications for Android.

http://www.youtube.com/watch?v=twmuBbC_oB8