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
XmGetVisibility(library call)											     XmGetVisibility(library call)

NAME
XmGetVisibility -- A function that determines if a widget is visible SYNOPSIS
#include <Xm/Xm.h> XmVisibility XmGetVisibility( Widget widget); DESCRIPTION
XmGetVisibility returns the visibility state of the specified widget. It checks to see if some part of the widget's rectangular area is unobscured by the widget's ancestors, or some part of the widget's rectangular area is inside the work window (but possibly outside the clip window) of a ScrolledWindow whose XmNscrollingPolicy is XmAUTOMATIC and whose XmNtraverseObscuredCallback is not NULL. XmGetVisibility does not check to see if widget is obscured by its siblings or by siblings of its ancestors. Consequently, XmGetVisibility returns XmVISIBILITY_UNOBSCURED for widgets which are completely or partially covered by one or more siblings of widget by one or more sib- lings of ancestors of widget. When a widget which is unrealized is being queried, it is indicated that the widget is fully obscured. If an application unmaps a widget that has its XmNmappedWhenManaged resource set to True, the return value is undefined. When a widget which is unmanaged is being queried, it is indicated that the widget is fully obscured. widget Specifies the ID of the widget RETURN
Returns one of the following values: XmVISIBILITY_UNOBSCURED Indicates that the widget is mapped, not obscured, and is completely visible on the screen. XmVISIBILITY_PARTIALLY_OBSCURED Indicates that the widget is mapped, and is not completely visible on the screen (partially obscured). XmVISIBILITY_FULLY_OBSCURED Indicates that the widget is not at all visible on the screen. RELATED
XmIsTraversable(3), XmManager(3), and XmProcessTraversal(3). XmGetVisibility(library call)