General :: Get App / Widget Icon Back?

Jun 6, 2013

My child accidently removed my App/Widget Icon. The icon that takes you to your apps and widgets.

How do I get it back?

General :: get app / widget icon back?


General :: Get All Apps Icon Back On Go Launcher Dock?

Aug 3, 2013

The other night, something updated on my HTC One (running Venom with GoLauncher EX) and the icons got all jacked-up. Some Google apps reappeared on the dock, a widget got pushed on top of another, etc. It looks like when the Google apps updated, they felt the need to reinstall themselves on the dock -- not sure, but that's not my main question.

When all of this happened, I lost the "grid" looking icon that will show All Apps and I'm not sure how to get it back. At this time, I can only see the apps I've put on my "home" pages, and in order to see All Apps, I must do an "add" and browse that way.

How do I get the all-apps grid thing back?

View 4 Replies View Related

Android :: Setting Widget Icon Image On Widget Load

Oct 16, 2010

I am writing my first application and am trying to get my widget to load a different image when it is added to the home screen based on the state of the notification volume.It is detecting the notification state fine and the proper Toast messages appear when I add the widget, but I'm not getting any icon.I just get an empty button.I'm using the same code to change the icon in my onReceive() method to do other things and that works fine.Is this the proper way to accomplish that?

View 3 Replies View Related

Android :: Gps Icon Disappears / Way To Get Back?

Jul 22, 2010

I am using the GPS and something I do in my program causes the GPS icon in the notification area of my phone to disappear for a few seconds then come back, then disappear again. None of the other GPS programs I use have this "problem"... if it is actually a problem. I've read all kinds of articles about the GPS icon staying on after the program exits, but I can't find anything about it disappearing while the application is using it. What causes the GPS icon to disappear?

View 5 Replies View Related

HTC Desire : Way To Get Weather Icon Back?

Sep 14, 2010

I deleted the large weather icon on the Home, that came with the phone installed and it shows the date where you are etc.... How do i get it back on? I tried to go on add widget to home and then ''weather'' but it wasn't the same one. Its some small one instead.

View 1 Replies View Related

Android :: Any Way To Get Icon Back From Media Store?

Jan 11, 2010

I've figured out how to get the camera to work. It's taking a 1/4 resolution picture and I'm putting it into the gallery. Next, I want to create a small icon of that picture to put on a button. I've seen several examples and the code below is what I've been trying:

showMessage("Next Step is cropping - Waiting ...");
logDebug("Sending URI " + mOutputFileUri);
// now we want to grab a lower res version for the button.
Intent cropIntent = new Intent("com.android.camera.action.CROP");
cropIntent.setClassName ("com.android.camera","com.android.camera.CropImage");
cropIntent.setData(mOutputFileUri); //cropIntent.setData(intent.getData());
cropIntent.putExtra("noFaceDetection", true); cropIntent.putExtra("outputX", ICON_SIZE);
cropIntent.putExtra("outputY", ICON_SIZE); cropIntent.putExtra("aspectX", 1);
cropIntent.putExtra("aspectY", 1); cropIntent.putExtra("scale", true);
cropIntent.putExtra("return-data", true);
startActivityForResult(cropIntent, CROP_FROM_CAMERA);

But, this blows up with a null pointer exception. I also get a warning in the log message stream saying the image file isn't finished writing. I've based my code on this:
http://stackoverflow.com/questions/1973359/android-crop-an-image-afte...
Also, when it tries to delete the temporary file, there is an error because I don't have permission. This smells like I'm just missing something important. Is there any other way to get an icon of the image?

View 4 Replies View Related

HTC EVO 4G :: Moving Icon / Widget From One Screen To Another?

Jul 20, 2010

It seems there's a trick that I'm missing because I'm only successful 10% of the time I want to move an icon from one screen to the other. Most of the time I have to delete the icon, swipe to next screen, then add it again.

View 10 Replies View Related

Android :: Widget That Looks Like Launcher Icon?

Feb 22, 2010

I would like to write a widget that emulates the look of an application launcher shortcut. In particular I want the white font label on a black, semi-transparent background. As it should look the same as the launcher shortcut I wouldn't like too much to imitate the actual look, but to re-use/copy it. Any idea where I can get that?I checked the launcher app and found application-boxed.xml, but it doesn't seem to do what I want and I am probably way off anyway.

View 6 Replies View Related

Motorola Droid :: How To Get Phone Icon Back On Screen?

May 25, 2010

I lost the phone icon off of my screen. I have looked through the applications and I don't see anything to put the shortcut back on my screen. How do I get a phone icon back on my screen?

View 1 Replies View Related

Samsung Captivate :: Battery Icon And Back Button

Oct 8, 2010

Anyways, I've had this phone for almost two weeks now and I love it. The only two things that have bothered me is: 1) the battery icon, it'll look like 80% when really it's 60% and 2) when I press the button sometimes I'll have to hit it a couple of times to make the back button work.

View 5 Replies View Related

Android :: App Icon To Drag Over And Interact With A Widget

Jun 5, 2009

Is it possible for an app icon to drag over and interact with a widget, similar to the action of deleting an icon or adding something to a folder?

View 2 Replies View Related

HTC EVO 4G :: Can I Make A Widget / Icon For Yahoo Calendar?

Oct 23, 2010

Can I make a widget or icon for Yahoo Calendar, so I can access the calendar quickly ?

View 4 Replies View Related

HTC Incredible :: Widget Icon Stuck Behind Dock

Nov 4, 2010

Anyone know how to get rid of a widget that has somehow found its way behind my dock so I cannot get to it to move it? I use LauncherPro+.

View 7 Replies View Related

Android :: Changing A Widget's Icon From OnUpdate

Dec 29, 2009

I have a widget that is meant to change its icon every time it receives the Update broadcast. However, the widget never manages to display its icon properly, displaying the text "Problem loading widget". The Logcat message is: WARN/AppWidgetHostView(612): updateAppWidget couldn't find any view, using error view
WARN/ App Widget HostView(612) : android.widget.RemoteViews$ActionException: can't find view: 0x7f060003 The code for my onUpdate is: public class ImageWidgetProvider extends AppWidgetProvider{private static final String TAG = "Steve"; public static final int[] IMAGES = { R.drawable.ic_launcher_alarmclock,/*and many more*/}; @Override public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds){for (int appWidgetId : appWidgetIds) {Log.d(TAG, "onUpdate:"); int imageNum = (new java.util.Random().nextInt(IMAGES.length)); Log.d(TAG, Integer.toString (IMAGES[imageNum])); RemoteViews remoteView = new RemoteViews(context.getPackageName(), R.layout.widget); emoteView.setImageViewResource (R.id.image_in_widget, IMAGES[ imageNum]);Now when I hover the mouse over "R.id.image_in_widget" it brings up that its value is equal to 0x7f060003 - the view that it can't find according to Logcat. Using the second Log statement, I verified that IMAGES[imageNum] does indeed refer to a random image from the IMAGES array. (In case it matters, it comes out as a decimal value rather than a hexadecimal one.) Any ideas what I'm doing wrong? Edit: Here is the layout file for the widget, where the image_in_widget ImageView is declared.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView android:name="@+id/image_in_widget"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/

View 4 Replies View Related

Samsung EPIC 4G :: No Video Icon - Widget To Add Either / Take It?

Sep 1, 2010

I'm sure this will end up being a stupid question and I'm going to kick myself....

I have a camera icon, but no video icon. No widget to add either. How do I take video?

View 3 Replies View Related

Samsung Galaxy S :: Trying To Return Messaging Icon Back To Bottom Bar

Oct 10, 2010

I'm a long time Nokia user and got my first android phone two weeks ago and there are still some learning to do in order to know how to use it properly. Today I accidentally removed one of the short keys from the home screen and I'm not able to get it back to it's place. To be more exact, it is the messaging short key which is located on the bottom bar of the screen. The other ones (Phone, Contacts & Applications) are still the, but when I'm trying to return the messaging icon back to the bottom bar, I always end up with the trash can over the area where I'm supposed to place the icon.What can I do, How do I get the icon back on the home screen?

View 3 Replies View Related

Samsung Captivate :: Market Icon Disappeared From Phone / How To Get It Back

Oct 1, 2010

My market icon disappeared from my phone. how do i get it back.

View 1 Replies View Related

Samsung Moment : How To Get Original Icon Back Without Doing A Factory Reset?

Jan 3, 2010

I will acknowledge that this is very insignificant, but for some reason it is driving me crazy. When I first got this phoe, I deleted the original espn, cnn and facebook shortcuts that came preloaded on the right screen. I have since come to realize that I check espn A LOT and I wanted the shortcut back there. So I added a bookmark, but the original icon that came preloaded just looked a lot better, does anyone know if there is a way to get the original icon back without doing a factory reset?

View 3 Replies View Related

HTC Droid Eris : Get Favorite Icon Back On Phone Screen?

May 16, 2010

After the update when i hit the phone icon, the "favorites" icon used to be at the bottom right after the green call tab. now there is an icon for call history.

i cannot for the life of me get it back. verizon says it was lost after the upgrade. i put the "people" icon on my now when i need to call a friend who is on my "favorite" list, i hit that icon, it brings me to all contacts and at the bottom i then have to depress favorites which brings up groups, then hit favorites. like 4 steps to make a phone call?

anybody figure out how to get the favorite icon back on the phone screen?

View 3 Replies View Related

General :: Normal Icon Has Been Replaced By Little Droid Icon Labeled Loading

Aug 1, 2012

I have a floder containing Google Earth. The normal icon has been replaced by a little droid icon labeled "loading." When I click it, Google Earth loads.

View 1 Replies View Related

HTC Incredible :: Weather Widget / Sunshine Icon At 10pm?

Apr 30, 2010

Not sure if this is a known issue, but WTF? i am still getting a bright sunshine and the temp if off by 7 degrees, plus i have it set to update every hour. Is there a fix?

View 37 Replies View Related

Android :: Home Widget Behave Like A Launcher Icon

Jan 26, 2010

I have a widget that acts as a launcher on the home screen. How can I make it behave like a launcher icon?

I use this layout for portrait:

CODE:................

And this is the background selector:

CODE:................

This way if I use the DPAD the widget is focusable but the click doesn't work. The touch still works but the widget is not displayed as focused.

View 2 Replies View Related

Motorola Droid X :: Power Widget Little Sync Icon For All App?

Jul 29, 2010

Just a simple? the power widget has the little sync icon. Is that for the sync of all apps on the phone like email, facebook, news, and anyother widget that updates and use data. It allows me to turn data on/off to all these programs rite? New to Andriod so please bear with me.

View 1 Replies View Related

General :: How To Edit Standard Icon Battery To Numeric Icon

Mar 26, 2013

How to edit standard icon battery to numeric icon?

GT-S6102

View 2 Replies View Related

Android :: Determine When Application Icon Is Clicked To Launch App / Do I Get Call-back For This?

May 7, 2010

Is there any way to determine when the user clicked the app icon to launch the app ? I mean say a user was using my app. Then he presses the home key as a result of which the app goes to the background. After sometime he clicks the app icon again. My question is do I get a call-back for this?

View 3 Replies View Related

Motorola Droid :: Bettercut Goes Back To Previous Screen And Does Not Create Icon / Fix It?

Oct 12, 2010

When i go to create, it goes back to previous screen and does not create icon...any guidance?

View 11 Replies View Related

Android :: Need Weather Widget Display In Single Icon Size?

Dec 29, 2009

Is there a simple weather widget that will display the current temperature on my home screen in a small size, like the size of a single icon? Something like what's on the Multimedia screen would be great. I don't want future weather, radar or maps... just the current temperature.

View 3 Replies View Related

HTC Incredible :: Changed Title Of Widget / Icon On Home Screen?

May 2, 2010

Is there a way to change the title of the widget/icon located on the Home screens?

View 2 Replies View Related

Motorola Droid :: Widget / Icon Disappear When Application Closed

Sep 20, 2010

When I exit out of an app the screen is blank for 30 seconds or so before my widgets and icons reappear. I had it back in November 2009 and I still have it after 2.0.1 and 2.1 and 2.2 and the other 2.2. I see a million threads here and on other forums asking about it. Just checking in to see if there was ever a solution discovered. Like all of you, I can always bring them back with a hard or soft reset.

I'm just wondering if anyone has found a way to prevent it from happening in the first place. I assume that it's related to available memory or processor or something, so every once in a while I think "I'm going to streamline this thing and give it all kinds of available memory" and it doesn't work. I kill all widgets and go to vanilla wallpaper and it still happens. Anyone figure this thing out?

View 12 Replies View Related

Sprint HTC Hero :: Weather Widget Displays Wrong Icon

Oct 20, 2009

On both the clock/weather and regular weather widgets I am getting the correct weather but the icon to represent what it looks like outside is off. For example, posting this at 9:30am, the moon icon is on the screen. I'm not quite sure what is causing this to happen.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved