How can I improve the look and feel of an Android app?

AndroidUser Interface

Android Problem Overview


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?

Android Solutions


Solution 1 - Android

###Some ideas:

  1. LayoutAnimations for your ListViews.
  2. Using TextSwitcher and ImageSwitcher instead of TextView and ImageView.
  3. Add animations to your views.
  4. Provide the correct resources for every device. You can use android-ui-utils.
  5. Use android-wheel for iphone like pickers.
  6. Provide some android patterns with GreenDroid.
  7. Use rounded corners for your ListViews.
  8. Check the third party libs available.
  9. Internacionalize your app using android2po or getlocalization.
  10. Use mapviewballoons for your android map.
  11. 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 ;)

Solution 2 - Android

Clearly you need to go take a look at the awesome Android Patterns website! Now with ten percent more useful!

Solution 3 - Android

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.

Solution 4 - Android

Please look at this .

Here you can find all the psd files for making good android Ui .

Solution 5 - Android

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.

Solution 6 - Android

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.

Solution 7 - Android

> 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..

http://tools.android.com/recent/

Solution 8 - Android

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.

Solution 9 - Android

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.

9 Patch Tutorial

Solution 10 - Android

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.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCrisView Question on Stackoverflow
Solution 1 - AndroidMacarseView Answer on Stackoverflow
Solution 2 - AndroidRobert MassaioliView Answer on Stackoverflow
Solution 3 - AndroidAbhinavView Answer on Stackoverflow
Solution 4 - AndroidChiragView Answer on Stackoverflow
Solution 5 - AndroidChrisView Answer on Stackoverflow
Solution 6 - AndroidwilldyeView Answer on Stackoverflow
Solution 7 - AndroidAnoop Chandrika HarisudhanNairView Answer on Stackoverflow
Solution 8 - AndroidGordon GlasView Answer on Stackoverflow
Solution 9 - AndroidWaynerView Answer on Stackoverflow
Solution 10 - Androidquangson91View Answer on Stackoverflow