Android :: Get Rid Of Extra Space In Text Switcher?
Aug 25, 2010
I have an activity that extends ViewFactory. The activity does nothing more than act as documentation for my app, with 5 different 'views'.
Each view is placed inside a ScrollView in a TextSwitcher. The problem that I am facing is that if one of the five views has more text than the next view, there is empty scroll space.
Any ideas on how I can get rid of this space?
View 1 Replies
Jun 2, 2010
I'm writing an application for Android phones for Human vs. Human chess play over the internet. I was looking at some tutorials, to learn how to develop Android applications and found a very nice example of making galleries (it was a GridView usage example for making a gallery about dogs) and the idea came to draw the chess table using a GridView, because the example project also handled the point & click event and I intended to use the same event in the same way, but for a different purpose. The game works well (currently it's a hotseat version), however, I'm really frustrated by the fact that whenever I rotate the screen of the phone, my GridView gets hysterical and puts some empty space in my chess table between the columns. I realized that the cause of this is that the GridView's width is the same as its parent's and the GridView tries to fill its parent in with, but there should (and probably is) be a simple solution to get rid of this problem. However, after a full day of researching, I haven't found any clue to help me to make a perfect drawing about my chess table without a negative side effect in functionality.
View 2 Replies
View Related
Sep 16, 2010
On Thu, Sep 16, 2010 at 9:49 AM, niko20 <nikolatesl...@yahoo.com> wrote: > One final question regarding extra space. Say for example on a large > screen device I decide instead now to create a whole new layout with > new controls so the user has access to all the controls instead of > having to use a menu.
> How do you code for that then? Is there a way at runtime to tell which > "layout" really was loaded by the framework so the code can hook into > it differently?
View 2 Replies
View Related
Jun 18, 2010
If I uninstall an app i paid for because I have no space and don't use it as much am i able to re-download it for free later one for example a week or month later. It didn't cost much but its that fact that I already paid for it so why should I pay again.
View 3 Replies
View Related
Oct 15, 2010
I'm using webview to display local html content. The text fits the screen width, but the user is able to navigate horizontally where there is only blank space left. However, there is no content to be shown as everything fits the screen size. Does anyone know how can I avoid this behavior? I mean, if all content is being show, how can I disable horizontal navigation.
View 2 Replies
View Related
Sep 24, 2010
I have a long text and I want it to be displayed with a TextView. The text I have is much longer than the available space. However I don't want to use scrolling, but ViewFlipper to flip to the next page. How can I retrieve the lines from the first TextView that are not shown because the view is to short so that I can paste them into the next TextView?
I simply have to use a custom View with a StaticLayout like this:
public ReaderColumView(Context context, Typeface typeface, String cText) { super(context);
Display display = ((WindowManager)
context.getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
dWidth = display.getWidth(); dHeight = display.getHeight();
contentText = cText; tp = new TextPaint();
tp.setTypeface(typeface); tp.setTextSize(25);
tp.setColor(Color.BLACK); tp.setAntiAlias(true);
StaticLayout measureLayout = new StaticLayout(contentText, tp, 440, Alignment.ALIGN_NORMAL, 1, 2, true);
Boolean reachedEndOfScreen = false;
int line = 0; while (!reachedEndOfScreen) {
if (measureLayout.getLineBottom(line) > dHeight-30) { reachedEndOfScreen = true;
fittedText = contentText.substring(0, measureLayout.getLineEnd(line-1));
setLeftoverText(contentText.substring(measureLayout.getLineEnd(line-1)));
} line++;
} } protected void onDraw(Canvas canvas) { super.onDraw(canvas);
StaticLayout textLayout = new StaticLayout(fittedText, tp, 440, Alignment.ALIGN_NORMAL, 1, 2, true);
canvas.translate(20,20); textLayout.draw(canvas);
}
Thats not optimized yet but you get the point.
View 1 Replies
View Related
Aug 8, 2010
I was playing around with a friends original Moto Droid and due to the smaller screen size the icons are smaller and it makes the UI look cleaner. Is there any way to make the icons on the EVO smaller to "get more" space out of the screen?
View 2 Replies
View Related
Feb 13, 2010
how much space do text messages take up? i normally send over 3500txts a month and i just got my hero a couple days ago and really just started texting and wanna know how much space it takes up and if it takes up a lot if there is any way to move them to be stored on SD
View 1 Replies
View Related
Oct 25, 2010
just got my desire and shop said to install advance task killer, trying that but wont install. are there better ones ?
View 14 Replies
View Related
Sep 8, 2010
Does anyone has the example of loading images from the sdcard to Image Switcher?
I'm a beginner of android here. Willing to learn.
View 1 Replies
View Related
Sep 24, 2010
Have the warning message "phone storage space getting low"
Have 11G of 14 on SD card, but only 25MB free on internal phone storage.
Just got a text message that wouldnt come thru, and it said 'no text message space left'.
Just uninstalled somethings that were 10MB, now giving me 35MB free but
I keep getting texts, the phone vibrates , which it wasn't set to do, and says 'text memory full'. I am assuming it is vibrating to give me a warning.
Can I clear some of the text memory, or must I clear all of it. And if so for either, how do I do this.
I have moved apps to sd card that makes sense.
How can I free up more space.
View 4 Replies
View Related
Apr 13, 2013
Like "Windows Phone task switcher" i would like a HTC One Task switcher,
View 1 Replies
View Related
Jul 18, 2010
So I have Launcher Pro, and I don't always want to use it but I want to every now and than, so I downloaded Home Switcher. I have Regular home set as default, and it shows it is. But when I hit home it always goes to Launcher Pro. I have checked under Applications to make sure it wasn't set as default or anything and it is not. So my question is anyone else having this problem? Or does anyone know how to fix this without just un installing Launcher Pro and reinstalling every time i want to use it?
View 5 Replies
View Related
Sep 4, 2010
I decided to install Launcher Pro and Home Switcher last night. Since Launcher Pro's contact button didn't work, I decided to un-install LP. *In case you're wondering, each time I clicked on the Contacts icon/button of LP, I would get an error pop-up saying that it was unable to launch (something to this effect.) Anyway, after I un-installed the LP I decided to also un-install the HS - with using just having to use TW - I figured I don't need HS anymore. So I removed HS from my Applications, but I am STILL getting the pop-up window each time I go to my home screen! So annoying! How do I get this off my home screen? I am trying to avoid doing a Factory Reset, because I don't want to have to input all my contacts manually again! Google didn't sync all my contacts, so this would mean having to start all over on setting up my phone. Unless someone can suggest a contacts backup program to place on my PC?
View 1 Replies
View Related
Aug 13, 2013
Chrome extension for switching languages at Google Play. URL>...
View 1 Replies
View Related
Jan 19, 2010
I've read that s ome have turned off Sense and have seen an improvement in performance and battery life running vanilla ANDROID.
If one uses Home Switcher does that accomplish the same thing, or is Sense still running in the background?
View 1 Replies
View Related
Oct 28, 2010
When i use Home Switcher to switch homes (htc Sense and Launcher Pro) when i go to the app and click use sense as default when i press the home key it still goes back to launcher pro..so when i use sense i need to try to not press home which is annoying! Also i have hand cent sms and i get a double notification. for some reason when i go to messages>menu>settings n go to unchecked received notifications i still for some reason get notifications from the stock. I even went to make sure its unchecked and it is!
View 3 Replies
View Related
Jul 2, 2012
I have the Samsung SGS3 running on ICS and I am looking for a possibility to invoke the stock TW app switcher (the one that appears when you keep the home button pressed) via a homescreen widget/button/whatever.
One of the other launchers I've tried (was it Go launcher or Apex?) had such a button at the homescreen: When pressed, the action launched the app switcher.
View 1 Replies
View Related
Nov 3, 2011
in an attempt to get "adhoc" network support,I did the following installed and ran "Smart WiFi Scanner" which recommended, and I installed some "WiFi Library" to support adhoc networks
I uninstalled the library app. installed and ran "ZT-180 Adhoc Switcher" (the app requested root access, I granted it, then the system shutdown abruptly - i.e. immediately off, not normal shut down)
I turned the phone back on, and tried running the "ZT-180 Adhoc Switcher" app a second time again phone turned off instantly.Now it boots up, system is fully running and loading home screen etc. but then reboots after about 7 seconds, and just continues in this loop.
View 4 Replies
View Related
Mar 21, 2010
I tried using home switcher to make calls but the same problem occurs. I can make a call, If I try to make a call after, the phone will lag on dialing then if it does connect I can't hear. If I receive a call it will answer but no sound. This happened after 2.1. I even did a factory reset and followed the upgrading instructions, everything else is fine except for this.
View 11 Replies
View Related
Mar 24, 2012
how about putting a limit on the max number of apps that can stay in the task-switcher cache? or allowing selectively selecting which ones stay in the memory N others like tools n utilities frontends (like cpu spy, callrecorder, camera, setcpu no frills, etc) should get the heck out of the cache.
the ideal would be to have only 4 real-app (not utility/tool) [not]processes /cached tasks/ at max for 512mb fones (like my xperia s) and maybe 6 for 1gb ones.
View 3 Replies
View Related
Sep 9, 2010
i got this notification yesterday so i deleted some apps and all my text messages but i cant get rid of it now!
any ideas?
View 14 Replies
View Related
Jun 30, 2010
I have an app with an SMS receiver set up, but even if the sms receive function is turned off using the package manager, the app will go to the top of recent applications (when holding the home button) if a sms is received. How can I stop this behavior?
View 1 Replies
View Related
May 13, 2010
So I just downloaded an app that quickly shows battery life, SD space, and disc space. It says I have used 628 of 748 mb on the disc. I thought the phone had an internal memory of 8gb.
View 3 Replies
View Related
Dec 16, 2009
Had my Samsung Moment for about a month. LOVE IT. Few issues (same as everyone else has noticed), but nothing terrible. Until: Randomly today TWO Notifications popped up that said "Low on space Phone storage space is getting low." One was what seemed to be from the "hardware" and the other was from the "Work Mail" app (which I don't use, haven't used, haven't even opened). When I click it, it takes me to the Manager screen. So, I began uninstalling some apps I don't really use (I didn't have that many anyway...a couple of games [Solitaire, etc], Facebook, Notes). It started running really slowly and random Force Close messages would appear for things like android.process, messaging--things that have never Force Closed before. I turned it off (pressed and held the red button), waited a few seconds, then turned it back on again. Immediately after the "Sprint" logo lights show finished, I got another Force Close message. When the Home Screen showed up, I had the two notifications again "Low on space". When I cleared the notifications, only the "Work Mail" one would clear. I went through and deleted some more apps that I don't use. Got on my computer & Googled the issue. Found a couple of random forums that suggested cleaning out the Cache in the Browser. I did that. Cleaned the History & Cookies in the Browser, too. Then, I did a soft reset (took out the battery). Started it up again, SAME notifications. Less Force Close messages. But, it's running VERY slowly.
After a few hours, I noticed that I hadn't received any text messages or Gmail notifications. I had my sister text me about 2 hours ago. Still have not received it.
I really don't want to hard reset. I haven't synced my contacts (I have over 400 & the Sprint store had trouble moving them from my Centro to the Moment) to Google yet, nor have I hooked my Moment up to my Mac yet (the Sprint guys had no idea if it would work or not with Snow Leopard & I hadn't had time to check yet) and I'm worried to try it now that my Moment has gone crazy...I really don't want to lose 400 contacts.I don't download a lot of apps. Most are reputable (Pandora, MotherTED, Shazam, Movies, Jewels). The last one I remember downloading was Google Voice three days ago (which I haven't really used because I've had the flu). I don't know if this is a Malware/Virus issue or if I'm just an idiot & did something wrong. But, it's running REALLY slowly right now. Still not receiving texts or emails (though my Twitter app has notified me of a couple of @ replies).I'm going to call Sprint & Samsung tomorrow, then go to a Sprint tech store if they can't help. But, I'm just hoping one of you have come across this & can help before I have to deal with hours of hold music & techies who tell me to soft reset over & over again.
BTW:
After awhile, I finally checked the storage space:
External SD care: Total: 1.89; Available: 1.85
Internal: About 2 hours ago when I first checked, after I had deleted a bunch of apps it said I had 7.something MB, now (after not downloading ANYTHING or barely even TOUCHING the damn thing) it says 1.95MB. Which leads me to believe that the 7.whatever was not necessarily accurate.
View 31 Replies
View Related
Aug 3, 2010
On Sunday I started getting the message "Low on space Phone Storage space is getting low." on the status bar. When I tap it, I'm taken to the "Manage Applications" screen, so it's clear that the message refers to the "Phone Memory," where apps are stored But when I go to Settings > SD card & phone storage here's what I see:
SD Card Total Space: 14.83GB
SD Card Available Space: 6.15GB
Internal Phone Storage Total Space: 6.60GB
Internal Phone Storage Available Space: 6.51GB
Phone Memory Total Space: 748MB
Phone Memory Available Space: 332MB
I've googled looking for solutions and it's obvious that this is a fairly common problem - especially on HTC phones. But the only possible solutions I've found are:
Too many apps are installed & space really is running low
A "bad" app was recently installed causing this error
Clear the cache for HTC Mail and HTC Message apps
Perform a Factory Reset We can rule this out since there is more than 44% of the Phone Memory available.
I didn't install any apps immediately before getting the message, but to be sure I uninstalled the 10 most recently added apps. No luck.
I've gone to Settings > Applications > Manage Applications, but the cache for these apps is already zero. The "Data" for Mail is 2.22MB and for Messages is 812KB.
This isn't fixing the problem, it's just a way to eliminate whatever condition has caused the symptom. But without an explanation of the actual problem I see no reason to think the problem won't come back in another two months.
View 5 Replies
View Related
Aug 31, 2010
My phone keeps telling me this in my notification bar and its bugging the crap out of me. My intenal phone storage has over 6gb free and my SD card has 1.3 gb free. The notification will not go away, I have tried rebooting my phone. I can't not stand it, its just one of my things, but it makes me want to not use my phone. OCD i guess.Anyway, PLEASE tell me why it is doing this
View 49 Replies
View Related
Oct 22, 2010
So i was wondering if anyone has the same issue as I..often when I type text-messages or similar text and press the letter "A" then the phone makes a "SPACE" stroke..even though "A" is far away from the "SPACE" key?
View 4 Replies
View Related
Jun 8, 2009
Is it possible to add extra languages to Android? My current Android phone only supports English and Chinese language input. I would like to have Dutch also, as I can use it for word completion. The question on top of that is, how to switch easily between these languages in the text input (keyboard) GUI?
View 5 Replies
View Related
Mar 19, 2009
When I run my app, I see about 8 or 9 icons in the main phone menu. One is to run the app, and the others actually run activities within the app.I want there to only be one icon for users.Any ideas as to why this is happening?My code is structured similar to examples from the book "Android - A Programmers Guide" by JF DiMarzio.How do I hide the other icons so users have to start at the main menu screen?
View 5 Replies
View Related