I have seen that standard Android UI components have a poor look and feel.
Can anyone provide me with some links or suggestions on how to improve the look and feel of an Android app?
I have seen that standard Android UI components have a poor look and feel.
Can anyone provide me with some links or suggestions on how to improve the look and feel of an Android app?
ListViews
.ListView
s.If you have some sort of tutorial, place it inside a SwipeView.
PS:If you want your login to be secure, use naked-password for Android ;)
Clearly you need to go take a look at the awesome Android Patterns website! Now with ten percent more useful!
Edit Just launched http://android-patterns.rickreation.com. Has a number of examples from top apps on Google Play. I'll be adding information about implementing those patterns too.
The convention that most apps have started following now is one from this Google I/O conference talk. Saw this in Facebook, Twitter, Picplz and a couple of other apps. GreenDroid is a library to get some of these without much work.
The two most useful things I have found while modifying components are selector drawables and nine patches.
StateListDrawables help you handle different UI events easily in one XML file. There is no need to mess around in code. Nine patches help you create stretchable backgrounds which expand according to the View size.
Shape drawables also come in handy to do basic stuff like rounded rectangles.
The look & feel of your android application basicly depends on the default theme you are using on your phone.
However you can change that behaviour for your application by applying Styles and Themes to your application. You have a lot of possibilities to style and theme your application by the android API itsself. There should be no need for an external additional framework to use.
I hope that helps.
Some of the answers suggested adding animations. There's some merit to that idea, but please keep in mind that at least some users will disable animations. Some of the "reduce your battery usage" apps, for example, will automatically disable all animations just to cut down on a little CPU usage and response delay.
Personally, I usually don't care about "gee-whiz" in UI design nearly as much as I care about responsiveness, consistency, intuitive operation, and conserving screen space. Eye candy is pleasing to me, but only if it doesn't waste pixels, obfuscate functionality, or slow down the phone. Make it pretty, or make it plain, but make sure that it quickly does what I expect.
Check out Jake Wharton's ViewPagerIndicator. It makes it relatively easy to add a modern UI/UX to ViewPager swiping, and it's compatible with the Android Support Lib, so works with Android 1.6 and up. Gives it the same look/feel as some of the more current modern Android apps.
Just keep in mind, to get it to work you'll need to specify a theme to your activity, which isn't mentioned in the "Usage" section, but is in the manifest file in his sample code.
Of course, you'll also need to add the support library to your project. Can do this by right clicking project in eclipse -> Android Tools -> Add Support Library.
The look & feel of your android application depends on the default theme you are using on your phone.
UI can be customized to the most in Android. You can create custom UI components and widgets. Since v10 of the ADT Plugin Update, UI elements had been improved greatly. Many new widgets (Previously coded) are readily available now for development.
see here for my Blog Post:
http://sree.cc/google/android-development-adt-plugin-v10-improvements-designing
Android is evolving.. See the changes so far..
I'd have to say custom xml drawables is a very large part.
With them you can create simple animations, use multiple 9 patches on a button (for unfocused,focused, or pressed), create backgrounds. All easily edited,integrated, and tested.
I think this link can help you: https://developer.android.com/design/patterns/index.html
It contain some rule for design UI android. By other way you can using some UI Pattern like Flat Design. I hope it can help you.