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
MrmFetchWidget(3X)														MrmFetchWidget(3X)

NAME
MrmFetchWidget - Fetches and creates any indexed (UIL named) application widgets and its children SYNOPSIS
#include <Mrm/MrmPublic.h> Cardinal MrmFetchWidget(hierarchy_id, index, parent_widget, widget, class) MrmHierarchy hierarchy_id; String index; Widget parent_widget; Widget *widget; MrmType *class; DESCRIPTION
The MrmFetchWidget function fetches and creates an indexed application widget and its children. The indexed application widget is any wid- get that is named in UIL. In fetch operations, the fetched widget's subtree is also fetched and created. This widget must not appear as the child of a widget within its own subtree. MrmFetchWidget does not execute XtManageChild for the newly created widget. Specifies the ID of the uid hierarchy that contains the interface definition. The hierarchy_id was returned in a previous call to MrmOpenHierarchyPerDisplay. Specifies the UIL name of the widget to fetch. Specifies the parent widget ID. Returns the widget ID of the created widget. Returns the class code identifying MRM's widget class. The widget class code for the main window widget, for example, is MRMwcMainWindow. Literals identifying MRM widget class codes are defined in <Mrm.h>. An application can fetch any named widget in the uid hierarchy using MrmFetchWidget. MrmFetchWidget can be called at any time to fetch a widget that was not fetched at application startup. MrmFetchWidget can be used to defer fetching pop-up widgets until they are first refer- enced (presumably in a callback), and then used to fetch them once. MrmFetchWidget can also create multiple instances of a widget (and its subtree). In this case, the uid definition functions as a template; a widget definition can be fetched any number of times. An application can use this to make multiple instances of a widget, for example, in a dialog box box or menu. The index (UIL name) that identifies the widget must be known to the application. RETURN VALUE
This function returns one of these status return constants: The function executed successfully. The hierarchy ID was invalid. The widget was not found in UID hierarchy. The function failed. SEE ALSO
MrmOpenHierarchyPerDisplay(3X), MrmFetchWidgetOverride(3X) MrmFetchWidget(3X)