Sprint HTC Hero :: Excel Spreadsheet - Scrolled Up/down/left /right To All Edges And The Tabs Don't Appear
May 21, 2010
I send my plant inventory spreadsheet to my gmail account each morning. It has six tabs (pages) of info on it.
I can't find the tabs when I view it on my hero. I've scrolled up/down/left /right to all edges and the tabs don't appear.
View 3 Replies
Jan 1, 2010
i'm probably going to be getting a droid at the end of january (staying on verizon cause they're the only carrier with 3g in my area). Just got a couple questions i'd like to ask. 1. how integrated can your google account be on a droid? i'd like to at least be able to view my google docs, for example, and i'd actually be a little disappointed if i couldn't edit them from the phone aswell. 2. i know that you can view word files from the phone. can you view excel spreadsheets? also, is there an app i can download to edit office files too? 3. how will my work email play with my droid? i just got hired on and i haven't even visited my email so i don't know if its exchange or what. Again, i'm definately staying with verizon so my choices are just the droid and the droid eris for right now.
View 1 Replies
View Related
Jan 10, 2014
i have a problem with this new kitkat os. Before kitkat i could change between tabs by swiping left to right ir right to left to change tabs.Now it doesn't change.
View 1 Replies
View Related
Aug 26, 2010
Does my CM6(updated nightly) have Microsoft word, excel, etc on it?
View 2 Replies
View Related
Oct 8, 2009
I have a TabActivity that display tabs either on the top or bottom as specified of the screen in portrait as well as landscape view. Currectly the tabs are dislayed one row and two columns(for 2 tabs each column as one tab). Now what I require is that when the view changes from portrait to landscape, the tabs should be positioned to the left of the screen like two rows and one column each row with one tab. Can anyone please help me to arrange the tabs to the left of the screen?
View 2 Replies
View Related
Aug 16, 2010
My employer is having me work on an android application with very specific UI requirements. Specifically, we need an interface that looks exactly like a TabWidget interface. However, having the tabs on the left hand side is an absolute must. We aren't going to be deploying this application to any android phones, its for an in house device, and as such don't have any problem violating any design considerations that the android platform might have.
We already have a working prototype that hacks together the functionality we need using a combination of focus listeners and list views. It isn't pretty, and we aren't very confident in it just yet, but it works for the time being.
What we'd really like is to throw all of our prototype UI code away in exchange for using the built in TabWidget. However, since TabWidget is hardcoded to only work with the tabs on top, this isn't really an option.
So, we are hoping that someone out there has a patch, or set of patches, or perhaps a custom class, that handles the TabWidget functionality with the tabs on the side instead?
The relevant code for the TabWidget is here: http://www.google.com/codesearch/p?hl=en#uX1GffpyOZk/core/java/android/widget/TabWidget.java&q=android%20package:git://android.git.kernel.org%20lang:java%20tabwidget&sa=N&cd=1&ct=rc
And the specific function that is hardcoded for being tabs on top is
CODE:.......................
View 1 Replies
View Related
Nov 1, 2010
I'm building a tab activity and but I don't want the tab text to appear bellow the icon. Is there any XML property to define this behavior? On the other hand, how can I place tabs in the bottom of the screen instead of the top?
View 1 Replies
View Related
Mar 5, 2010
I can see my green battery icon at the top next to the time, but I'm reading folks who are saying they have a certain % of battery life left....are you estimating, or is there somewhere I can see this? Or is it an app? Or are you all rooted?
signed,
confessed newbie overwhelmed by possibilities trying to configure it all out.
View 22 Replies
View Related
Dec 11, 2009
How do I find out exactly how much life is left in the battery?
View 2 Replies
View Related
Aug 17, 2010
[GUIDE] How to Root Sprint 2.1 Release for CDMA Hero - xda-developers i am using the above instructions to root. i got to the super permissions and went to flash the recovery image <step 9> and i get this error on my command prompt: error writing recovery: no space left on device# i have stopped and am not going any further. i got the superpermissions app and i clicked allow on the next prompt. idk what to do from here.
View 7 Replies
View Related
Dec 28, 2009
the speaker on my hero is only playing sound from the left side of the camera. is this how its supposed to be or do i have a faulty device?
View 5 Replies
View Related
Jun 19, 2010
I'm currently working on my first android application. I am using a tabbed layout for my application. I followed the tutorial for this on the dev guide and ran into a problem. The tutorial only used three tabs, but I have a need for more. As such, the tabs resize and bunch up. I was hoping someone could tell me how I can make them scroll, like in dolphin browser when using multiple tabs.
View 1 Replies
View Related
Jan 8, 2010
Would be really useful if I could edit word files with my hero. Anyone know what apps are out there to use?
View 2 Replies
View Related
Feb 27, 2010
I simply use the tabwidget :
CODE:..........
Why are my tabs so uggly in 2.0 (no more rounded corners as in 1.5/1.6) ?
ugly tabs here
=>
This was better
What should I do now to show "rounded corners" TABS to Nexus One (for exemple) users ;-) ?
Is it because of the following manifest lines :
CODE:................
I have to keep android:anyDensity="true" otherwise I've got a problem with re-sizing of the menus described here
As a separate question, my users can change the Locale within my app itself, I then "redraw" the menus using onPrepareOptionsMenu (Menu menu) to refresh the strings within the menu with the new language choosen by the user. Is there an equivalent for TABS (I have local strings within the Title of the TABS) or do I have to delete all the tabs and re-create them from scratch ?
View 2 Replies
View Related
Oct 19, 2009
We're in the process of writing an app that has 4 tabs: Map, People, Places, Events. The People, Places, and Events in the App show up as Icons on the map. By default the People, Places, and Events tabs each show a listview, custom rendered, displaying all the People, Places, and Events respectively.
Now, right now each of the tabs has as its content an Intent set to launch the corresponding activity. For instance, there is a MapTabActivity that extends MapActivity, a ShowPeopleListActivity that shows the people, and so on and so forth.
I see a lot of StackOverflow questions/answers saying that due to various limitations in the way the TabHost is setup, it's best NOT to use activities as the content of tabs. For instance, it's impossible to launch a new activity and have it take the place of the existing activity within a tab, whereas it's possible to switch out a View with a different view.
Now, I'm at a crossroads. We've (for better or worse) devoted a fair amount of time trying to get this app to work the way it's currently structured, with the Activities as the content of the tabs. When an icon corresponding to a Person, Place, or Event is clicked, it fires off a VIEW Intent on a URI corresponding to that object; this is picked up by an Activity that then shows the object. The same mechanism is at work both in the Map and in the individual lists. We really like the loose coupling this provides us; we just give a VIEW command and the URI to the person/place/event and it automatically brings us to the right activity. Granted, the activity that's launched covers up the tab view rather than appearing inside of that, but we were willing to live with this.
Here's an issue though: from the Show activity, we want to be able to go back to the map, centered at that person, place, or event. We can launch a new activity to show the map again, but now we have the map activity as the content of the tab, plus the show activity, plus the new map activity in the activity stack; given how resource intensive the map activity is, I'm guessing this is not the ideal way to go.
I guess my question is, is there a GOOD tutorial somewhere showing exactly how to do complex tasks with a TabHost? I've seen HelloTabWidget; I'm looking for something much more sophisticated than this. I'm worried that if we switch to the View based way of doing things, we'll have to do a LOT of housekeeping to intercept all the back events, try to switch out the views, etc., etc., as well as strongly coupling our program in a way we don't want.
View 5 Replies
View Related
Nov 11, 2010
I have an Tab Activity with 4 tabs. Each of tab is showing me the list view. Suppose i m on 4th tab and dragged the list view to the last position and after that i click on 3rd tab and again when i go to 4th tab it is not refreshing and showing me the last visible screen. Actually i want to show the list view again from 1st element. is tabs refresh automatically or we need to do it programmatic?
View 1 Replies
View Related
Feb 14, 2010
Just got my new HTC Hero and I really like it. But I have one small issue. I'd like to open and view word, excel and pdf files in the browser but it doesn't allow me to. It starts to load but suddenly stops.
View 5 Replies
View Related
Nov 17, 2010
I'm trying to add a stikcy header to a listview. I've put the header-field and the listview inside a relativelayout and defined the listview's android:layout_below="@id/header".
The problem is that I want the listview and the header to be positioned at the same place when the listview is not scrolled to the top. The header's background is transparent. I drew an amazing image in paint to illustrate how I want them to interact.
I figured I could override the listviews onscrollistener and change the listviews layout_below-tingy at runtime when it's getScrollY() == 0, but that seems to happen all the time.
Has anyone done something similar that could point me in the right direction?
View 1 Replies
View Related
Sep 20, 2009
The updated ROM firmware updated wonderfully and now the fun is really responsive and fast with very little noticeable lag. I have searched but can't see anyone else mention this, I can't believe this is just me though. When you want to remove an item from the screens now, it will start the app just by touching and not give time enough to highlight so that it can be dragged to 'remove' tab. One example is googlemaps from the homescreen. Have I overlooked a setting which will allow this or are the updates to speed such that it is a little too responsive now?
View 7 Replies
View Related
May 19, 2010
I have a scrollview and I only want an event to happen if it's already scrolled to the bottom but I can't find a way to check if the scrollview is at the bottom.I have solved it for the opposite; only allow the event to happen if it's already scrolled to the top:ScrollView sv = (ScrollView) findViewById(R.id.Scroll);
View 2 Replies
View Related
Jan 6, 2010
Before I can set a full wallpaper that scrolled between homescreens... Yesterday I downloaded OPEN HOME... not sure if that effected it or what, but now when I try to set a wallpaper... its long and vertical and doesn't scroll with screens... its a stationary wallpaper... Any pic I set does this except for the pre set wallpapers on the phone...
View 2 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
Jun 14, 2010
Did the Evo always have a Sprint logo on the top left hand corner of the display on the screen?
View 13 Replies
View Related
Jun 14, 2010
Does the desire come with a screen protector already on it as on the edges of mine have started to bubble up. It does look like it has one, but can it be replaced?
View 3 Replies
View Related
Oct 15, 2010
I developed my application and tested it on android emulator 1.6, 2.1 & 2.2 and on HTC Magic
its running PERFECTLY and the gui components look very neat...
However, when I tested it on Sony Ericsson Xperia X10 the gui components are looking fuzzy........
View 1 Replies
View Related
Sep 4, 2010
Is there some setting that I should know about to display web pages correctly? Some sites will be all squished on the screen ( multiple panels will be overlapped )
Others have the sides of the screen cut off so that the scroll bar doesn't show up.
Changing the display resolution doesn't seem to help either.
( This is when viewing full pages, not mobile pages )
View 1 Replies
View Related
Oct 21, 2009
I made a custom widget (which is just a composite like):
<LinearLayout> <TextView> </LinearLayout>
this widget is focusable and reacts to touches. I'd like it to change its background color to the default system highlight color when the user scrolls to it, and have it blink when the user taps it (just like an element of a ListView does).
I can add an OnFocusChangeListener for when the user scrolls to it, and in the handler do the changing of the background color.
How would I add the 'blinking' behavior though when the user just taps it with a finger? I did something like this as a test code...
this is just a guess. Is there a correct way of implementing this behavior?
View 3 Replies
View Related
May 16, 2010
I love the phone, but the other day the unlock slider suddenly changed from left-right to right-left, and I'm right handed. How do I change it back ?
View 4 Replies
View Related
Jun 14, 2010
I have a long scrolling list of EditText items created by a SimpleCursorAdapter and prepopulated with values from an SQLite database. I make this by: cursor = db.rawQuery("SELECT _id, criterion, localweight, globalweight FROM " + dbTableName + " ORDER BY criterion", null); startManagingCursor(cursor); mAdapter = new SimpleCursorAdapter(this, R.layout.weight_edit_items, cursor, new String[]{"criterion","localweight","globalweight"}, new int[]{R.id.criterion_edit, R.id.localweight_edit, R.id.globalweight_edit}); is.setListAdapter(mAdapter); The scrolling list is several emulator screens long. The items display OK - scrolling through them shows that each has the correct value from the database. I can make an edit change to any of the EditTexts and the new text is accepted and displayed in the box. if I then scroll the list far enough to take the edited item off the screen, when I scroll back to look at it again its value has returned to what it was before I made the changes, ie. my edits have been lost. In trying to sort this out, I've done a getText to look at what's in the EditText after I've done my edits (and before a scroll) and getText returns the original text, even though the EditText is displaying my new text. It seems that the EditText has only accepted my edits superficially and they haven't been bound to the EditText, meaning they get dropped when scrolled off the screen. Can anyone please tell me what's going on here and what I need to do to force the EditText to retain its edits?
View 1 Replies
View Related
Jan 27, 2009
I'm not very experienced in Java. Is there an easy possibility to get a border and round edges around a LinearLayout? (perhaps with XML parameters)
Or do I have to draw my own widgets.
View 3 Replies
View Related