The tag has no wiki summary.

learn more… | top users | synonyms

48
votes
4answers
18k views

Android Quick Actions UI Pattern

I'm interesting in incorporating the Android UI pattern called "Quick Action". Basically, it's a context menu that doesn't cover up the data that is being acted on. I'd like to implement this but I ...
22
votes
3answers
6k views

creating a system overlay (always on top) button in android

I'm trying to create an always-op-top button/clickable-image which stays on top of all the windows all the time. The proof of concept is here ...
15
votes
1answer
2k views

Show AlertDialog in any position of the screen

When we show an AlertDialog in android it shows in the center of the screen. Is there any way to change the position?
15
votes
3answers
9k views

Setting webview background image to a resource graphic in Android

I'm trying to set the background of a webview to a drawable image resource in Android. From the sdk it seems something like this would work but it doesn't. WebView web = (WebView) ...
13
votes
3answers
1k views

How to make Facebook's app new menu on Android?

Recently Facebook released a new version of its Android application that features an improved navigation. One main new feature is the new menu (that already existed on the iOS version): By clicking ...
8
votes
4answers
1k views

What View Component does the Google Plus App (Stream) use?

if you use the Google Plus App on Android and switch to the Stream, you get a view where you can swipe to the left and right between the All circles/Incoming/Nearby-Stream. What view component is used ...
8
votes
5answers
553 views

How to detect HTC Sense?

Can I somehow detect if my app is running on HTC Sense? More generally, the problem is, that I have a Button with custom drawable. It's something very similar to the account switcher in the top right ...
8
votes
1answer
3k views

remove notification bar shadow in android app

In android, the notification bar at the top has a shadow most of the time. However, sometimes, such as when an app has it's title-bar showing, or in some other cases (such as in the twitter app or the ...
7
votes
1answer
244 views

How to make Android 4.0 apps backwards compatible?

Android 4.0 (ICS) has lots of new UI guidelines which are great. The problem is that going forward, I'm not sure how to build an app for Android 4.0 and make sure that the app looks the same/similar ...
6
votes
3answers
15k views

Android View.onDraw() always has a clean Canvas

I am trying to draw an animation. To do so I have extended View and overridden the onDraw() method. What I would expect is that each time onDraw() is called the canvas would be in the state that I ...
4
votes
2answers
481 views

iPhone alike sliding header, or: how to force immediate redraw on top margin change?

I am trying to implement a similar effect like the iPhone-alike sliding header in the iPhone contact app (the sliding header that group the contacts by it's starting letter). This is the screen of my ...
4
votes
3answers
416 views

Shared Toast does not show in Android 3.0.1 on Motorola Xoom

I use a shared Toast across different Activities in order to only show the latest message, immediately discarding any previous ones. I put the code in the custom Application object: public class ...
4
votes
2answers
2k views

Is there a simpler/better way to put a border/outline around my TextView?

So I wanted to have a TextView with a cool border around it. I couldn't find any standard way of doing it, so I came up with this: @drawable/custom_bg_1: A blue rounded shape <?xml version="1.0" ...
4
votes
1answer
2k views

Android - Customizing the Spinner widget Look and Feel

Is it possible to change the color of the radio button in the Android spinner widget. By default it displays the green color for the radio button. I need to change it to some other color, is it ...
4
votes
4answers
3k views

Is it possible to set font for entire Application?

I need to use certain font for my entire application. I have .ttf file for the same. Is it possible to set this as default font, at application start up and then use it elsewhere in the application? ...
3
votes
2answers
60 views

Create background image with margin on EditBox

I'm trying to create a EditText box, like below which has a image on the left hand side and editable text region on the right hand side, but I don't seem to have the slightest clue how to do this in ...
3
votes
2answers
100 views

How do I update the state of a ProgressBar on every element of a GridView / ListView?

Currently I have a GridView, and every element should have a separate ProgressBar. The elements represent separate downloads, and I'd like to show the state of the downloads using these ProgressBars. ...
3
votes
3answers
207 views

Android - have progress bar increase smoothly instead of jumping in bigger steps.

I have some sequence of situations let say 5 situations. The point is I do not know how long each of them will last. I just know when each of those situations is finished. so imagine this method is ...
3
votes
3answers
726 views

Help : Get the position of the current image displayed in Gallery

in my application , i have a gallery of pictures, but i want to detect the position of the current image displayed , For example : when i launch my acvitivity, the position is 0, but when i scroll ...
3
votes
2answers
272 views

Where is the code that manages View re-use in Android?

Where is the source code that manages View re-use in Android? I can think of three distinct parts to this process, but there may be more: The logic that determines if a View is eligible for re-use ...
2
votes
4answers
54 views

Limit the size of the textview horizontally

I have this text view <TextView android:id="@+id/name" android:singleLine="true" android:layout_height="wrap_content" android:textColor="#ffffff" ...
2
votes
1answer
33 views

Android Widgets Naming Standards

In my Android application, for example when I am inserting a Button and adding a static value for it as follows: android:text="MY BUTTON" It gives a warning saying Hardcoded string "MY BUTTON", ...
2
votes
2answers
49 views

Android, concerning the User Interface design

the more I read the Supporting Multiple Screens guide, the more I get confused. if the layout folder's qualifier is based on size (small, normal, large and xlarge) and the drawable folder's qualifier ...
2
votes
4answers
48 views

what is the name of this widget and how can i use it in my app?

I want to know what is the name of this widget , and how to use it in my app, i've already see it in some apps in the Android market, but i don't know what is it's name and how to use it in some ...
2
votes
2answers
155 views

TransitionDrawable: automatically reverse transition once it completes

I want to highliht newly-added ListView items with a nice effect. I thought that was simple&easy, but I stumpled upon a problem: I want to play TransitionDrawable animation and once it completes ...
2
votes
1answer
62 views

Theme dependent colors of selected widgets

I'm pretty sure that this question already has been answered somewhere. It just seems too common. But I can't find the answer. I can't also figure out the solution. Here's the problem: I want one of ...
2
votes
1answer
53 views

Android: disparity between emulator UI and device UI

I am working on an android app in which I am seeing some disparity between what is showing up on the actual device and what is showing up when I run the app on the emulator. Here is the relevant ...
2
votes
1answer
36 views

BackgroundColorSpan with additional, vertical padding

In my app I have something similar in appearance to labels in GMail app UI. For those who may not know, they look like this (labels are these colorful bars): In order to achieve similar effect I use ...
2
votes
2answers
141 views

How to add view components dynamically from activity

I am attempting to create a user interface dynamically. I have successfully create a view and loaded my background image. I have created two additional small view items to display on the background. ...
2
votes
2answers
108 views

Android : set visibility of individual buttons in a custom ListView

I have a ListView with a custom Adapter (extending BaseAdapter), and the layout of each row consists of a TextView and a Button. After the list is created, I want to change the visibility of specific ...
2
votes
1answer
50 views

Sometimes after cleaning and redeploying 9 Patches images dont work. Have to redeploy a few times to fix

I'm not sure why this is happening.. But sometimes when we have a new build, the 9 patches don't work (the actual 9 patch image gets stretched instead of being scaled properly).. I'm not sure why ...
2
votes
2answers
132 views

How to do a bar with a similar style to Search in android

I've tried researching about this for many days. I've really really no idea how to start on doing a very similar style as below. I know it consists of one button and a edittext. However, i do not know ...
2
votes
4answers
125 views

Can any one point me to this “Take a picture” widget in google plus android app. Want to know how to create a UI of that type

Can any one help me out how how this widget can be developed as in attached.The widget in the attached is of "Take a photo" or select photo" UI. Just want to know how can we create this UI widget. ...
2
votes
1answer
182 views

change ScrollView scrollBarStyle programaticaly in Android

I am trying to implement different styles for the ScrollView's scrollBarStyle in Android. I am well aware that the setScrollBarStyle() method is used, however I am not aware of what particular styles ...
2
votes
2answers
462 views

Suggestions for data entry form in android

I am working on app which have data entry form which have Some fields with 3 drop down associated to it. More then 25 input fields (input box, radio button, drop downs etc) All input fields are ...
2
votes
1answer
157 views

Ready UI components (controls) [closed]

I am looking for ready solutions of ready made UI components (or controlls as you may think of). Up to now I have been able to find free GreenDroid and paid DroidUX. Do you know about other ready made ...
2
votes
1answer
120 views

android file transfer to wifi printer

I want to transfer any office file to a Wi-ifi printer. I have absolutely no idea on how to start with. Found there are no public APIs for wireless printing. Could anyone share some inputs? Thanks ...
2
votes
1answer
111 views

android:pitfalls of deleting ldpi/mdpi folders

I was wondering what are the pitfalls of deleting the ldpi/mdpi/hdpi folders on my android project? Can i just copy all the images in the drawable folder instead? I did see the following links about ...
2
votes
1answer
64 views

Get Notified after 1st rotation of Text in Text View(ellipsize=“marquee”) in Android

What I have: I have a TextView with Ellipsize = Marquee. The textview's focus is true, so that I don't have to focus it manually, to start the text rotation. What I want: I want to do some operation ...
2
votes
1answer
243 views

How do create this gmail app effect on Honeycomb

Attached is the screenshot of the UI that I would like to have in my app. When I click on the listitems on the fragment on the left side I see a arrow pointing(question mark in red) on the list item ...
2
votes
2answers
142 views

Is it possible to use android UI components in a Swing app?

Is it possible to use android UI components in a Swing app? For example, to use the Android API directly in my Swing project so I can use its UI components. Thanks
2
votes
1answer
572 views

Creating 'settings' view equivalent to the system views

I'd like to create a 'settings' tab in my Android application which will look like views in Android's system settings - for example like a Phone settings > Sound. I'd like to achieve that headers, ...
2
votes
2answers
998 views

Creating custom view

I want to create a custom view TestView class for which I can create object via new TestView(). A new view class however needs a AttributeSet object. From where do I get that AttributeSet and what ...
2
votes
2answers
167 views

Updates TextView in Android

view.setText("hello"); wait(1000); view.setText("world"); When I call the above function the view doesn't show "hello" at all. The text only updates when the complete function is finished. What do I ...
2
votes
0answers
6k views

Sizing an Android multi-line TextView

I have an Activity where I want to display a heading that takes up the top quarter of the app and displays a dynamic set of text. In some cases it'll all fit on one line and I'd like the font size to ...
2
votes
2answers
1k views

android UI external libraries?

I'm starting with android, and the app I'm developing is gonna need custom widgets look (glossy buttons, animated backgrounds etc.), I've googled for any external libraries to achieve this and did not ...
2
votes
4answers
218 views

Android centering text in lists

Say I have a list of Strings with the elements: "One", "Two", "Three", "Four" I want to center them in the middle of the screen but I want to do it in a way that the start of each word is next to ...
2
votes
3answers
1k views

How do I change the textColorPrimary in a theme?

I'm changing the theme of an activity in onCreate using setTheme (I'm doing that even before calling super.onCreate(), as this is supposed to be more reliable). It does work in the sense that it ...
2
votes
3answers
222 views

How does android display a list with 200 elements?

When I have a ListActivity and an Adapter how does Android handle a list with 200 elements. Does it try to load all of them directly how does it wait till the user scrolls and then renders those ...
2
votes
3answers
379 views

Recommendations for Android programming resources

I am working on getting familiar with the Android SDK and I have having a hard time getting the UI side of things figured out. I am trying to create a menu, kind of like how apps are listed in the ...

1 2 3 4 5