Android :: Layout When Setting WindowIs Floating To True?
Mar 3, 2010
I've got a ListActivity using the Theme.Dialog theme and windowNoTitle set to true.
Unfortunately, when I do this, the header rows (just normal rows in the list but they look like sub headers) refuse to fill_parent width (instead, they wrap_content - the header text).
I noticed this was not a problem when using the Theme theme so I started narrowing everything down to what was causing the problem.
The answer: windowIsFloating. Theme.Dialog sets this to true, and if I override this to false, then the headers happily fill the parent width.
Is there a way around this (because I would like to set windowIsFloating to true)?
View 8 Replies
Jul 18, 2010
How to add a floating bar that will stay at the top of a layout page, even when a user is scrolling through the contents of that layout?
View 1 Replies
View Related
Nov 20, 2009
would like to add a zoom control to the map. I also want to layout the position of the zoom Control instead of the default middle bottom position. I can do this by getZoomControl but it is deprecated.
Could anyone tell me how to do this with setBuildtInZoomControls?
View 5 Replies
View Related
Nov 17, 2010
I want to create layout like this on facebook app. Тo appear with effect from bottom to top.I don't know where to find example (xml and code) for this.
View 2 Replies
View Related
Aug 18, 2009
I created a new Activity and created a new layout file under res/ layout . after this,i also want to add a options menu file under res/menu.but how could i bind all these layout file with this Activity? I can't find any info in manifest file. or i missed it?
View 3 Replies
View Related
Jul 21, 2010
So Im trying to add an imageview to my current xml design - and its working decently. Now my main problem is that I cant seem to find a way to set the attributes for the image like where it needs to be displayed etc.
RelativeLayout mRelativeLayout = (RelativeLayout) findViewById(R.id.board);
ImageView i = new ImageView(this);
i.setImageResource(R.drawable.blue_1);
i.setAdjustViewBounds(true);
mRelativeLayout.addView(i);
setContentView(mRelativeLayout);
i tried messing around with setlayoutparams but got absolutely no clue what to do with it.
View 1 Replies
View Related
Nov 18, 2010
simple question. In a class, if I wanted to set the text to the text value of a string I have, what is the code for that?
I have: TextView textView = (TextView) findViewById(R.string.noFaceFive); textView.setText(textView);
but setText says : The method setText(CharSequence) in the type TextView is not applicable for the arguments (TextView)
is there a set Text to display the text of a string? Serious mind fart on my part.
View 1 Replies
View Related
Sep 14, 2010
Is there a way to specify a background in a layout based on OS version?:
android:background_1.5="@color/white"android:background_above_1.5="@drawable/mybackground"
I'm running into a problem where using a 9 png drawable for the background causes a stack overflow exception on a listview item (stack trace shows its related to a child TextView -> drawText()). The layout is simple:
<LinearLayout><ImageView /><TextView /></LinearLayout>
and the background works fine on 1.6 and above. It's just 1.5 that's having the issue. If I set the background to be a color, it works fine.
View 12 Replies
View Related
Jun 16, 2010
I'm setting background color based on a given state of an object in each row in a list. That part is working just fine but when I set the background color on the outermost layout the row no longer highlights when selected. Probably a specific attribute I'm not setting/changing?
View 3 Replies
View Related
Nov 16, 2010
How to use a layout as empty view for a listview when the adapter has zero elements?
setEmptyView is not working with this code :
CODE:..............
Layouts used :
CODE:...........
main.xml
CODE:...............
View 3 Replies
View Related
May 10, 2010
so hopefully this question/problem isn't as simple/dumb as my previous.I've somehow messed up my keyboard settings or language. the bottom right and bottom left buttons now have some Chinese/Japanese text on them and the bottom left button turns on some alternative keyboard options and changes my text output to Japanese.Now I presumed this was simply something in my language settings but I've set them back to UK and still no joy.I'm also using Handcent sms and the Handcent keyboard ui but that's not displaying either. Tried un-install/reinstall but no luck.
View 1 Replies
View Related
Oct 12, 2010
I am trying to implement a robust RSS/Atom reader for android, and since Xerces won't compile I am struggling to find an alternative. I am using org.xmlpull.v1.sax2.Driver(), however this just wraps a DOM parser with SAX callbacks. Is there anything comparable to Xerces on Android?
View 3 Replies
View Related
Feb 4, 2010
I got a mytouch 3g figuring it would handle voip like iphone and wm phones. But to my dismay, it appears there are no true VOIP apps for android that will allow me to call over wifi/3G from Germany.
I have read about sipdroid, truphone, skype lite, iscoot and others, but they all make a local call first, even to members of the same service -totally defeats the purpose. You'd be better off using a calling card!!
Anyway, just wondering if I am missing something. I got an android phone because I wanted to be part of something different, with great potential. I just didn't realize that it would be different in such a disadvantageous way...
View 5 Replies
View Related
Oct 28, 2010
I have a tab widget i need to make it appear at the bottom of the screen, however i need to set the property android:layout_alignParentBottom="true", but this widget is created on code. How can i set this propety to True on code side (not on xml side)
View 2 Replies
View Related
Aug 12, 2010
I am trying to make an app that can work with or without the Google Maps API present. Eclipse gives me an error when trying to use android:option as an attribute (I have the latest SDK, I think, revision 6). Also, when I set the build target without the Google Maps library, I get an error from my class that extends MapActivity.
View 10 Replies
View Related
May 11, 2010
I looked over SensorManager and was still unsure, how do I detect if the phone is looking at true north (or any other direction for that matter).
View 1 Replies
View Related
Sep 24, 2010
I have been looking around today and am trying to find a VoIP application that will actually work.
Let's say, what if I got my phone shut off from VZW, would there be a way to make VoIP calls over wifi? I have seen posts about using Google Voice in conjunction with other programs. Also, Nimbuzz? Anyone have a positive approach they have used for this?
I will be going out of the US for a while and will be getting my VZW account inactive for a while. I am looking for a way in which I'll be able to still use my Droid Incredible to make calls to the US using wifi. I'd even be willing to make calls just to Skype friends or Nimbuzz friends. I am hoping that someone else has found a way to accomplish this.
View 13 Replies
View Related
Apr 20, 2010
Cause it doesn't.I have a service running an Asynctask to do some work. I bind to it from an activity and call a cancel method. The service, in turn, calls AsyncTask.cancel(true);
AyncTask.cancel returns true. Nonetheless, the thread is still running happily and still doing the things in doInBackGround, sending notifications along the way.
There is no sign that it attempted to kill the thread. I am not using NDK calls or anything that I think should stop if from taking down the thread. What am I doing wrong? Or is this a known issue?
View 9 Replies
View Related
Jan 28, 2010
I added android:fastScrollEnabled="true" to the xml description of my listview class. I was (probably mistakenly) expecting this to magically transform the scrolling of my really huge listview so that the thumb button and the indexes display on the right side.
Is there more to hooking up the listview so that the framework knows what its alphabetizing? I have custom defined cells.
View 3 Replies
View Related
Mar 14, 2012
I am coming from Windows Mobile 6.5 and was using PocketShield as my lock screen replacement. One thing that I am looking for in an android app is..
1. The ability to enter pin or pattern from the lock screen app while also displaying all the new features of the app. One screen to rule them all.
2. I now use WidgetLocker and it works great except that I have to enter the pattern after sliding my app. What is the point? Either I enter the pattern before I select the app from the home screen or after when sliding. I thought I was able to use the app on the slicker "outside" of pattern security.
View 1 Replies
View Related
Oct 30, 2009
How can you programmatically set the android:singleLine="true" property of a TextView?
I want my EditText to open a numeric keypad with the "Done" button.
View 2 Replies
View Related
Oct 4, 2009
Before asking my doubt, let me clarify my understanding of allowTaskReparenting...
Suppose there exists a Task (say Task 1) and this task has an activity (say Activity 1) which wants to call my Activity (say Activity 2). Let my activity (activity 2) set the attribute allowTaskReparenting to true and let my activity have a specific taskAffinity(affinity1). When Activity1 calls my activity (activity2), my activity becomes part of the task1. But suppose another task (task2) is already present/created with the same taskAffinity as mine (affinity1) and an activity in that task (say activity3) tries to start my activity, my activity gets re- parented to task2.
Not sure if i was clear enough. If i were to rephrase my words...
If my activity has allowTaskReparenting set to true and an instance of my activity is already present in task1. If task2 with the same task affinity as my activity tries to start my activity, the EXISTING activity gets re-parented from task1 to task2.
My quesions:
(1) Is my understanding correct ?
(2) If I am correct then a single instance of my activity gets shifted from task1 to task2. So 2 activity objects of my activity are NOT created.
View 5 Replies
View Related
Jan 30, 2009
When using a mediaplayer to play back an audio file, you can set looping to true - that's not the issue here.
If looping is set to true, there's still an audible gap between the file finishing and then starting again.
How could I achieve true gapless playback? I've attempted using two instances of the same file, overriding oncomplete and onseek.. can't seem to improve the gap though.
View 6 Replies
View Related
Oct 13, 2010
When the AVD screen is in an Eclipse frame there is a button on the frame to rotate orientation. How do I cause the same action when the AVD screen is floating outside Eclipse?
View 4 Replies
View Related
Nov 11, 2010
What is this widget called (the one with the three buttons).
View 4 Replies
View Related
Nov 25, 2009
I wonder how to make floating buttons, like the zoom button in the build-in web browsee?
Actually there are 2 things i'd like to know:
1. How to make a view(button) floating above other views? 2. How to make the fade in/fade out effect regarding to touch screen?
View 2 Replies
View Related
Oct 13, 2010
I am a developer and recently completed the implementation of my keyboard MessagEase. It's available on the Market (with its very- different features, making it quite unlike QWERTY).
This keyboard works fine as a replacement of the standard keyboard on an Android Phone. But for a An Android Tablet, it would work best if it's implemented as a floating, movable keyboard.
(the footprint of this keyboard is mostly dependable on the size of a human's finger; it remains the same even if the tablet's display is much larger than a phone's. Therefore it'll take a relatively smaller area on a tablet.)
If I use the current SDK hooks, it will have to take a significant portion of the screen, defeating the purpose.
View 2 Replies
View Related
Jun 9, 2010
I've begun playing with the android NDK. One of the things I've just learnt is about creating an application.mk file to specify the armv7 abi. I'm building the san-Angeles example with the following parameters. Code...
View 1 Replies
View Related
Jun 7, 2010
It's kind of hard to explain, but an example of what I'm wanting to accomplish is like this: thought about generating the layout in html and using a web view, but I need to be able to perform an action when the user clicks on the image. Does anyone have any ideas?
View 1 Replies
View Related
Jan 17, 2010
I love Android, coming over from the Iphone i have Tmobile Pulse!
I love how Android had "Floating Apps" Apps which run on there own in the background, like facebook?
Is there anymore apps like this, which can do the same, a Gmail one would be awesome or news feed (RSS)
Also on my Android i have a big cluttered messy list off apps on one page, looks like this, comes with some games i don't want. How can i get rid of them ?
View 3 Replies
View Related