Android :: Froyo 2.2 Disables RequestWindowFeature - Window.FEATURE NO TITLE
May 26, 2010
Just trying to get a confirmation, has anyone else found that since updating to 2.2 the following line has no effect: requestWindowFeature(Window.FEATURE_NO_TITLE);. Is there a new permission required?
View 4 Replies
Aug 3, 2010
Just FYI my co-worker has upgraded his Evo to run Froyo today. The update takes quite a while to execute so be patient, but one thing I noticed was that the USB tethering no longer works. On my phone (still running 2.1) I can plug in the USB cable, enable the 4G radio, and then go to Menu -> Settings -> Wireless & networks and click on the "Internet sharing" option. Once I do this, my computer automatically picks up the new USB device and can use it for internet access (it shows up as "usb0" in my ifconfig on Ubuntu 10.04). Note that this USB tethering ONLY works when the phone has a connection to the 4G network, otherwise tapping the "Internet sharing" option will produce an error 67 message.
I tested on my co-worker's phone after he upgraded to 2.2 and found that:
1) The "Internet sharing" option has been renamed to "USB tethering"
2) Tapping the "USB tethering" option will immediately disconnect your phone from the 4G network. Consequently, this means that you cannot tether.
Anyone else notice this issue after moving to Froyo? I have downloaded the update but I haven't applied it yet (for this and other horror stories I have heard). If you do lose the ability to perform USB tethering after the upgrade, have you been successful with tethering the Evo to a Linux machine? I have tried these two tutorials and been unsuccessful:
Linux + GNU = Humans Enabled: How to Tether your Android to Ubuntu(or Fedora) GNU+Linux for Internet Connectivity
James Titcumb Blog Archive Tethering your HTC Magic Android Phone in Ubuntu 9.04 (Jaunty Jackalope)
View 23 Replies
View Related
Aug 26, 2009
yes, I know how to do it in the java code (requestWindowFeature (Window.FEATURE_NO_TITLE)) -- but I would like to create a style that does that.
View 4 Replies
View Related
Jan 13, 2010
Is it possible to remove a title bar in a window after content has been set? Calling the method Activity.requestWindowFeature (Window.FEATURE_NO_TITLE) ends up in the exception: "requestFeature() must be called before adding content".
View 3 Replies
View Related
May 5, 2009
I am using a custom title view in my application for each activity. In one of the activities, based on button clicks I need to change the custom title view. Now this works fine every time when I make a call to setFeatureInt.
But if I try to update any items in the custom title (say change the text of a button or a text view on the title), the update does not take place.
Debugging through the code shows that the text view and button instances are not null and I can also see the custom title bar. But the text on the text view or the button is not updated. Has anyone else faced this problem? How do I resolve it?
View 9 Replies
View Related
Oct 7, 2009
i want to keep cancel button in the title bar at the right side, but i am getting the icon at the left side of title bar. Is this a bug or something else is required to accomplish this?
View 2 Replies
View Related
Jun 17, 2010
does htc evo has notes feature like window 6?
View 3 Replies
View Related
Oct 12, 2010
I have a custom title bar that I would like to apply to all my activities. I have searched online and found a few ways of doing that however I have ran into a problem. It seems that despite the fact I have a TextView in my titlebar with id @android:id/title, Android will not use the value defined in the manifest in android:label for each activity. I tried also calling setTitle(R.string.myTitle) but it still will not render it! If I manually put some text in my TextView in the xml it shows up fine. How can I have a custom title bar that is linked and makes Android use my manifest values for labels? I do not want to lose the setTitle() or the XML attributes functionality.
View 9 Replies
View Related
May 23, 2009
I am using a custom title view and would like to show/hide a progressbar in the title view when a thread is working.But there is no change to the progress bar. It is never displayed. Can someone please tell me what is wrong with the code?Is it possible to display the title progressbar in a custom title?
View 4 Replies
View Related
Jun 9, 2009
I'm setting up an app to use a custom title so I can get the proper logo into the title instead of just text, and to make it clean (since the logo has a flat black background), I also want the whole title bar to be black. My xml for the title is a framelayout to hold the logo inside of a linearlayout to change the background color, and I'm setting the title in OnCreate() as follows:
CODE:.........................
With this setup, the old gray from the old title bar still exists around the edge of my custom title. Appears to be on the order of 3-4 px on the bottom and 8-10 px on each side. Any ideas about how to get the black background to cover the entire area?
View 4 Replies
View Related
Sep 1, 2010
Just wondering if anyone has a simply solution to stop the additional drive that pops up on the PC when connected, that asks if you want to install the phone's drivers?
View 3 Replies
View Related
May 27, 2010
Sprint says it will allow PDAnet tethering on EVO 4G, suggests it will also allow built-in Wi-Fi mobile hotspot capability in 2.2 'Froyo' update for Android | TECHNOLOGY Blog | dallasnews.com
This guy talked to a sprint rep who insuated that Froyo's wi-fi hotspot feature wont be blocked when its eventually released for the evo
Quote:
View 38 Replies
View Related
Sep 1, 2010
What is the basic difference between the PhoneWindow and MidWindow policies? I found that the emulator version takes the implementations of the PhoneWindow.When the MidWindow implementations will be used? Also, I found that PhoneWindow handles the call settings implementation and the same is not there in MidWindow? Please someone help me pointing out the differences between both the policies and under which circumstances which one will be used.
View 6 Replies
View Related
Dec 21, 2009
I have been applying a simultaneous rotate and alpha animation to an ImageView using AnimationSet. It was working fine when I set a Bitmap as the image with Image.setImageBitmap(my_bitmap).
I then extended the Drawable class with my own drawing routine. In my custom drawable I do some porter-duff compositing on the bitmap i was using earlier. I set the image with Image.setImageDrawable( new MyCustomDrawable( my_bitmap ) Now my animation rotates but no longer performs the alpha transition!
One of the things I have tried is returning different values from getOpacity() in my Drawable. None of PixelFormat.TRANSLUCENT, PixelFormat.TRANSPARENT, PixelFormat.OPAQUE, or PixelFormat.UNKNOWN work.
View 2 Replies
View Related
Jul 29, 2010
I did some searching and couldn't find an app like this, figured I'd try here. Anyone know of a app that will disable your wifi when you lock your phone, and enable it when it's unlocked?
View 9 Replies
View Related
Feb 28, 2010
i cannot stand those letters popping up. distracting on dro
View 2 Replies
View Related
Sep 15, 2010
I have an AbsoluteLayout which has an OnTouchListener. Inside this layout there is a much smaller LinearLayout positioned dynamically. The OnTouchListener works as expected.
Now the problem comes when I add a LongClickListener to my LinearLayout. That disables my OnTouchListener if the touch hits the LinearLayout but it is still triggered, if the LinearLayout was not hit by the touch.
My listeners:
CODE:..............
How can I delegate the touch on the LinearLayout where the OnLongClickListener is registered, to the parent?
View 2 Replies
View Related
Jan 9, 2010
Droid 2.0.1 screenmodewidget 'awake stay' not working (is supposed to disable lock screen)
mylock also has problems. Anyone (ON DROID!) found an app or widget that disables lock screen that works without problems?
View 3 Replies
View Related
May 31, 2010
when charging my Hero the touch screen will not work, when not charging it works fine, is this normal.
View 5 Replies
View Related
Jun 9, 2013
I drive a VW Jetta with bluetooth, which has easily paired with my last two phones (Bionic and S4, respectively). While Google map's turn-by-turn map navigation works fine with my phone's bluetooth on, in so far as I can see directions on the map, the navigation voice is disabled. Only when my phone's bluetooth is off do I hear a voice. I'm not sure if this is a function of my phone or my car.
View 1 Replies
View Related
Apr 19, 2010
is there an app that disables the unlock screen after i press the top power button? (i hate having to currently press the power button and then swipe down every time i want to use the device)
View 21 Replies
View Related
Mar 14, 2010
I got an Otterbox (IMPACT) case for my wife's Droid Eris. I have verified that when the case is on, the proximity sensor does not operate at all. Take case off, works fine. Case is on correctly (there's not a whole lot of ways to have it on wrong). Pressing it harder onto my head (which one shouldn't have to do) or holding it farther away don't help, either. Does the other Otterbox case do this?
View 11 Replies
View Related
Feb 7, 2010
<html>
<script language="javascript">
/* This function is invoked by the activity */
function wave() {
alert("1");
document.getElementById("droid").src="android_waving.png";
alert("2");
}
</script>
<body>
<!-- Calls into the javascript interface for the activity -->
<a onClick="window.demo.clickOnAndroid()"><div style="width:80px;
margin:0px auto;
padding:10px;
text-align:center;
border:2px solid #202020;" >
<img id="droid" src="android_normal.png"/><br>
Click me!
</div></a>
</body>
</html>
What is "window.demo.clickOnAndroid()"? I know that clickOnAndroid is a method in my Android application. But what is window and demo? My file is called demo.html. Is that it?
View 2 Replies
View Related
May 19, 2010
i want to hide the app title.
View 1 Replies
View Related
Apr 9, 2010
In one of my Android Application I need to keep the title bar same but the view that is shown in the rest of the screen changes. So, I have taken different Activity for all the views that I need to show and set the title bar in every Activities onCreate method. Now, the problem is that I have a button in the title bar and need to perform certain action on its click event. Writing the same event handling code in every Activity class is very cumbersome. Is there any other way out that whenever there is a click event on that button of the title bar then we can have the same functionality without writing the same code in all the Activity classes. Can we use ViewGroup for that? I don't have much idea about ViewGroup. Is that possible with ViewGroup?
View 5 Replies
View Related
May 23, 2010
When my application starts, I call: this.requestWindowFeature(Window.FEATURE_NO_TITLE); to get rid of the title bar. I then create a custom ViewGroup and when set that view to be the content view via a call to 'setContentView', the 'onLayout' method of my ViewGroup is called. However, the top position is set to 25, even though I have turned off the title. How can I set my ViewGroup to take up all of the space, including the space formally occupied by the title bar?
View 3 Replies
View Related
Sep 18, 2010
I wish to set the title of each activity with a constant value which is fetched from a local sqlite database. the value is the user's username.
Is there a way to set the title once and have it affect all activities? or do I have to manually set the title on each activity?
If there is a way, how is it achieved?
View 1 Replies
View Related
Jun 9, 2009
I have a possible simple layout questions. My activity content view contains a title bar, a webview and a status bar. I put these three views into a linearlayout and each has height as WRAP_CONTENT.
The problem is, when first displays, webview doesn't take much space because the page is not loaded. The status bar is showed right under title bar. When the page is loaded, webview expands over the screen size and the status bar is not shown even when scroll down to the button. (I tried to set webView's height to FILL_PARENT, but status bar is not shown)
What is the correct way I can layout this so the title bar always at the top, the status bar always at the bottom and webview always take the remaining middle space and have scroll bar when contents takes larger space?
View 2 Replies
View Related
May 1, 2010
In my app i want to set the logo in the title bar. but depending upon the size of the device how could it be set,so it may be dynamically possible.
View 2 Replies
View Related
Jul 27, 2010
I have below requirement : App name is App1.Activity name is Activity1. But I want to display title bar of the Activity1 as "MyTitle" If i try to do that one , App1 appears for few seconds after that "MyTitle" is displaying in the title bar. I don't want to display App1 in my title bar.Any one of us can help me to do above one.
View 8 Replies
View Related