HTC Desire HD :: Remove 'personalize' Button From Sense Bar At Bottom Of Screen?
Nov 22, 2010
I've just got my HTC Desire HD phone and have spent some time setting it up and personalizing homescreens, etc.
But now that I've done that I'd like to remove the 'personalize' button from the Sense bar at the bottom of the screen.
Is this possible? I have little use for it now and would rather it was an Internet button or something similar.
View 1 Replies
Aug 31, 2010
Has anyone worked out if it is possible to set one of the buttons on the bottom of the Desire to bring up the lock screen rather than using the power button at the top. Only just got the phone 3 days ago but this is (sor far) the only niggle I have.
View 11 Replies
View Related
Aug 7, 2010
On the iPhone, when you hold down the top button and the button on the bottom it takes a snap shot of your screen, I love that feature. Does the droid have it?
View 9 Replies
View Related
Aug 15, 2010
I have searched but I am not sure what to search for.I want to remove or change the bar at the bottom of my homescreens. The one with the menu button, the phone button and the add widget button.
View 3 Replies
View Related
May 13, 2009
When i make a tabhost, the tabs buttons are at the top of the screen. How to have it at the bottom?
View 2 Replies
View Related
Jan 18, 2010
Probably silly question, but just wonder Why do we have 'Phone' button on the bottom of the screen while we have hardware button on the bottom left side?
View 14 Replies
View Related
Nov 6, 2009
just wondering if there is a way to put a "Phone" button at the bottom of the screen (instead of the app dock) like there is on the Sense UI.I thought I saw something like this a few days back (phone button in center, app dock pushed to the left, something else on the right) but I cant find it again.
View 2 Replies
View Related
Nov 8, 2010
I am trying to put the zoom controls of the map on the bottom right corner of screen. I could do it with RelativeLayout using both alignParentBottom="true" and alignParentRight="true", but with Framelayout I did not find any such attributes. How do I align it to the bottom-right of screen?
View 1 Replies
View Related
Nov 24, 2010
I have a layout that has a button I would like to always be on the bottom of the scree of my phone. The problem is android:layout_gravity="bottom" only puts it at the below the rest of the layout, rather than the very bottom of the screen.Is there a way around this?
View 1 Replies
View Related
May 3, 2010
I'm new to the forums here, i have had my desire for just over a month now really enjoying it.
anyway i want to remove the htc sense on the phone and just have the default the 2.1 theme.
how would i go about doing this, would i need to root the phone or is there an easier way to achieve this.
View 5 Replies
View Related
Mar 18, 2010
I'm trying to show a ScrollView with a button anchored to bottom of screen. This is coded programmatically (without using XML layout for now). The trouble is when the ScrollView has many items (requiring scrolling), it prevents the button at the bottom from showing. The bottom button is sort of pushed off the screen. Look at the code below. I have a TODO which mentions a workaround to specify the exact pixel height of the ScrollView, but this is not a good solution. If you change the for loop to add only 2 buttons, then the bottom button will show. So how do I make the ScrollView show a scrolling list, with the bottom button in view, and without specifying an exact size of the ScrollView? I've seen some discussions here:
http://groups.google.com/group/android-developers/browse_thread/threa http: //groups. google.com /group/ android-developers/browse_thread/threa But I don't know how to apply these to my situation.package com.test.ScrollViewTest; import android.app.Activity; import android.os.Bundle; import android. view. Gravity ; import android.view. ViewGroup. MarginLayoutParams; import android.widget.Button; import android. widget.ImageView; import android .widget.LinearLayout; import android.widget.RelativeLayout; import android.widget.ScrollView; import android.widget.TextView; public class MyScrollViewTest extends Activity @Override public void onCreate(Bundle savedInstanceState) super. onCreate (savedInstanceState); LinearLayout ll = new LinearLayout(this); // the main layout of the screen ll.setOrientation (LinearLayout.VERTICAL); TextView tv1 = new TextView(this); tv1.setText("First line of text"); TextView tv2 = new TextView(this); tv2.setText("Second line of text"); ll.addView(tv1); ll.addView(tv2); ScrollView sv = new ScrollView(this);// You can only add one child (usually a layout) to a scrollview, // otherwise you get exception: "ScrollView can host only one direct child" LinearLayout ll2 = new LinearLayout(this); ll2.setOrientation(LinearLayout.VERTICAL); * TODO: PROBLEM HERE: You cannot use WRAP_CONTENT for height, because * the layout below the scrollView will not show (it's sort of pushed * off the screen - even if a margin is specified). * An alternate value of 300 works OK (remove the bottom margin too).* But this is only suitable for screen size 320x480 in portrait mode.LinearLayout.LayoutParams params Linear = new LinearLayout.LayoutParams( LinearLayout. Layout Params.FILL_PARENT, Linear Layout.LayoutParams.WRAP_CONTENT /*300*/); Add 50 pixel margin to bottom of scrollview (this margin doesn't scroll) paramsLinear.bottomMargin = 50;sv.addView(ll2); // Add some stuff to scrollView to test its depth // (it should leave a margin at bottom of screen) for (int i = 1; i < 10; i++) { TextView textView = new TextView(this) ;textView.setText ("Text View " + i); linearLayout.LayoutParams p = new LinearLayout .LayoutParams (Linear Layout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
ll2.addView (textView, p); button buttonView = new Button(this); buttonView. setText ("Button " + i);ll2.addView(buttonView, p); ll.addView(sv, paramsLinear); RelativeLayout rl = new RelativeLayout(this); RelativeLayout.LayoutParams paramsRelative = new lative Layout. LayoutParams( RelativeLayout.LayoutParams.FILL_PARENT, RelativeLayout .Layout Params .WRAP_CONTENT); // Make the button anchored to the bottom of the screen.// But this doesn't work when the ScrollView has a scrolling list of items. Why? params Relative .addRule(RelativeLayout.ALIGN_PARENT_BOTTOM); rl.setLayout Params (params Relative) ;
View 5 Replies
View Related
Sep 19, 2010
On one of my screens I have a number of folders I have created to organize aps - music, going out, image etc is there any way I can change the stock folder icon for one that has connection to the choice of app - ie can i personalize the new folder icons without having to root?
View 3 Replies
View Related
Aug 2, 2010
I've just come to notice a problem with my desire, which I believe to be fairly long standing.For quite a long time I've been thinking that scrolling down lists/webpages/in apps etc has been quite stuttery, the wierd thing being that if you flick the list/page/whatever and let go (ie let the momentum take it) it's a lot smoother. I noticed today that when I'm scrolling with my finger on the top half of the screen it's actually really smooth, but as soon as my finger reaches the halfway point on the screen it starts to stutter. The stuttering isn't random, it seems like there's a grid of sensitivity on the screen, so it only catches up every 5mm or so (it feels like there's about 15 points of sensitivity horizontally on the screen).To test it I first downloaded the multitouch test app (as it purely reads from the driver where the touches are being detected and displays it on the screen). It still happened. I then downloaded a free drawing app, which seems to accentuate the problem, as when my finger reaches the midpoint of the screen it stops drawing altogether!I imagine it's probably a hardware problem as it's been happening for ages (only just recognised though) and during that time I've installed a debranded rom and then updated to froyo.Has anyone else noticed anything similar? I'll try and get a video on youtube to show the problem at some point. Any advice of things to try or should i just call T-Mobile support?
View 1 Replies
View Related
Nov 16, 2010
Not sure where the issue lies, with Android itself or launcher pro, but I have a strange issue where the icons on the bottom row of my home screen are out of alignment.
The two on the left, SMS and Mail, are widget icons for counters and the two on the right are direct app launchers, but yesterday they stared to show out of alignment.
View 7 Replies
View Related
Sep 20, 2010
Basically, I'd like to install the Slide Screen launcher on my Desire, but I don't know if I can switch back to Sense easily. Is there a way to do this, via a simple means, or by downloading a specific launcher switching app?
I'm not comfortable enough with Android yet to Root my phone, but if that is the only way, then so be it. (Although I doubt it is, what with the lovely customisation options we have at our disposal).
View 4 Replies
View Related
Jun 2, 2010
Other than making a Goldcard from an SD / installing a generic rom / rooting, is there a simpler way to remove O2 branded splash screens from startup?
View 1 Replies
View Related
Feb 21, 2013
I am trying to free up space because I'm having problems updating apps because not enough disk space. I tried to get rid of Polaris Viewer which I never use and tried to drag it to the waste bin but it stuck on the bottom taskbar and I don't know how to remove it.
View 12 Replies
View Related
Nov 12, 2013
How to get rid of the bar at the bottom of the screen while using a transparent Nav Bar. I have been messing around with the SystemUI.apk, but I feel like it's more likely the GoogleHome launcher (which seems to just put some tweaks onto the stock launcher) or even the Launcher2.apk that is formatting the wallpaper like this. I am just staring to mess with coding, so I'm not sure where the formatting is happening.
I REALLY want to use the Google Home launcher and not just switch to a third party launcher like Nova. Nova launcher does get the wallpaper full screen with transparent nav bar, but it does not have the features that the Google Home launcher has.
View 1 Replies
View Related
Sep 2, 2010
As you can see in the link below there is an extra padding (around 2mm) below the EditText field. I can't seem to remove this padding in anyway. This occurs with other widgets as well (like Buttons). It looks like Android is default adding this extra padding to all elements.
http://img266.imageshack.us/img266/4000/bottompadding.png
View 1 Replies
View Related
Apr 19, 2010
I have a HTC Desire which is now UNLOCKED as the unlocking code was supplied to me from T-Mobile (upon request). Anyone have any idea how to REMOVE the T-Mobile "splash screen" (branding) when the HTC is booted up?
View 10 Replies
View Related
Aug 18, 2010
I have the screen controlled whilst charging with Home > menu > settings >applications > development > stay awake checked. Fine but sometimes I do want the screen to power down such as when I am charging from a battery pack rather than wall or car socket. Ideally a button on the Home screen.
View 7 Replies
View Related
Sep 1, 2010
I have created a class extends ListActivity and i want to add a button at bottom of Listactivity. Can any body tell me how it can be done.
View 3 Replies
View Related
Sep 25, 2010
I wounder how it's possible to create a bottom bar buttons in android. I read something about this UI solution, are there any controls that can be used?
View 2 Replies
View Related
Aug 22, 2010
Is it possible to remove the bottom line showed in the tab bar? It is grey when not selected.
And is it possible to change the yellowish color to something else?
layout xml: http://pastebin.com/M2KqtH1r
View 2 Replies
View Related
Aug 26, 2010
I've had this phone since release day, and I've never had the need to press this button. I wish it was the power button instead so much because right now it's just taking up physical space for no reason.
View 15 Replies
View Related
Oct 21, 2010
I wanted to know how to create a listActivity on Droid but on the bottom have a bottom to do whatever I want so like in a section of its own. Recently I tried merging two layouts with one being the row one for list Activity and a button but all I get are a list with buttons next to each line on the list so how can we do a list with a space on the bottom just for a button?
View 16 Replies
View Related
Nov 8, 2010
How to align an image button bottom right. My code is as follows:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="center_horizontal" android:background="@drawable/help"
View 2 Replies
View Related
Apr 27, 2010
I want to put two items <xyzLayout <ScrollView> - this to fill all available space <Button> - this on the screen bottom. </xyzLayout> How can I do this?
View 2 Replies
View Related
Sep 8, 2010
I am trying to port an existing iPhone application to android. I wish to have a button scroll into view at the bottom of a GridView to enable the user to load more data from the server. Presently, my solution simply fixes a button at the bottom of the screen instead of having it scroll into view.
Here is my layout code:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android
android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" >
<GridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/grid"
android:layout_width="fill_parent" android:layout_height="wrap_content" android:columnWidth="70dp" android:numColumns="auto_fit" android:verticalSpacing="0dp" android:horizontalSpacing="0dp" android:stretchMode="columnWidth" android:gravity="center" android:background="#000000" />
<Button android:id="@+id/load_more" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="Load More" /> </LinearLayout>
Fixing the button at the bottom of the screen won't work because I plan on placing an ad at the bottom. Can anyone either explain conceptually how to get a load more button to scroll into view, or point me to some sample code, OR tell me why this is not idiomatic to Android and what other UI convention it uses to load more data in a GridView?
View 1 Replies
View Related
Sep 14, 2010
Okay so I know you can turn the screen ON with the Track Pad. Using a custom ROM. I have my phone set up this way, but is there an app out there that allows you to turn it OFF again, again using the track pad?
It seems weird that you can do one, but not the other, and I'd rather just press the button facing me, than have to pick my phone up to use the power button. Just to kill the screen.
View 5 Replies
View Related