problem to remove widget


 
Thread Tools Search this Thread
Operating Systems Linux Android problem to remove widget
# 1  
Old 01-08-2011
problem to remove widget

Hi,

I am using an htc wildfire with android 2.2, I have recently download a battery widget.
After I decided to remove it, I saw black box that say problem in loading.

How can I tell the android to stop trying to load it?

---------- Post updated at 11:10 AM ---------- Previous update was at 10:51 AM ----------

well I solved the problem, just tap the widget and moved it down.

However the search line disappeared, how can I put it back?
SOLVED

Last edited by programAngel; 01-13-2011 at 06:39 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

KDE widget creation

Hello. Best wishes for everybody. I would like to put a widget on my kde desktop. I want to show a list of town in a dropdownlistbox. Then when I click on one town I want to start the internet explorer with a html file argument ( for every town there is a html file ) Or better : In the... (1 Reply)
Discussion started by: jcdole
1 Replies

2. Web Development

Fix For Google Page Rank: Wordpress List Rank Dashboard Widget

Here is the fix for the recent Google changes to their pagerank API. For example, in the List Rank Dashboard Widget Wordpress Plugin (Version 1.7), in this plugin file: list-rank-dashboard-widget/wp-list-rank-class.php in this function: function getGooglePR($url) Change this line: ... (0 Replies)
Discussion started by: Neo
0 Replies

3. Shell Programming and Scripting

A problem for sed? Remove parts of a string

Hi, My knowledge about sed is limited but I have a problem that I think can be solved with sed. I have a variable in a shell script that stores a lot of path/filenames and the delimitter between them is a space (they all exist on the same line). One part of the filename is the file creation... (4 Replies)
Discussion started by: pcrs
4 Replies
Login or Register to Ask a Question
XtUnrealizeWidget()													       XtUnrealizeWidget()

Name
  XtUnrealizeWidget - destroy the windows associated with a widget and its descendants.

Synopsis
  void XtUnrealizeWidget(w)
	 Widget w;

Inputs
  w	    Specifies the widget.  Must be of class Core or any subclass thereof.

Description
  XtUnrealizeWidget()  unmanages  the  specified  widget and destroys the windows associated with the widget and all of its non-popup descen-
  dants.

  The "Algorithm" section below explains the details of this process.

Usage
  Note that this call simply destroys the windows associated with the widgets.	The widget instances themselves remain intact.	 To  recreate
  the windows at a later time, call XtRealizeWidget() again.  Compare this to XtDestroyWidget(), which destroys the widgets themselves.

  Unmanaging  a  widget  is  the  usual method for temporarily removing it from the screen.  Unrealizing a widget frees up resources on the X
  server, and may be a better choice for widgets that are only infrequently visible.

Algorithm
  If the widget is currently unrealized, XtUnrealizeWidget() simply returns; otherwise, it performs the following:

  o  Unmanages the widget if the widget is managed.

  o  Makes a post-order (child to parent) traversal of the widget tree rooted at the specified widget and, for each widget that has  declared
     a callback list named unrealizeCallback, executes the procedures on the XtNunrealizeCallback list.

  o  Destroys the widget's window and any subwindows by calling XDestroyWindow() on the specified widget's window.

  Any  events  that  are either in the queue or that arrive following a call to XtUnrealizeWidget() will be dispatched as if the window(s) of
  the unrealized widget(s) had never existed.

See Also
  XtDestroyWidget(1), XtRealizeWidget(1), XtUnmanageWidget(1).

Xt - Widget Lifecycle													       XtUnrealizeWidget()