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
DwtListBoxSetPos(3Dwt)													    DwtListBoxSetPos(3Dwt)

Name
       DwtListBoxSetPos  -  Makes a specified position (item number in the list) the top visible position in a list box, or as close to the top as
       possible.

Syntax
       void DwtListBoxSetPos(widget, position)
	    Widget widget;
	    int position;

Arguments
       widget	 Specifies the ID of the list box widget whose specified item number in the list you want displayed in the top position.

       position  Specifies the item number in the list displayed in the top position in the list box.

Description
       The DwtListBoxSetPos function makes the specified position (the item number in the list) the top visible position in a list box.  The func-
       tion  determines  which	item in the list box is displayed at the top of the list box, the choice of which is limited by the DwtNitemsCount
       and DwtNvisibleItemsCount attributes to the list box widget.  When DwtNvisibleItemsCount is greater than 1 and  less  than  DwtNitemsCount,
       the list box widget fills the list box with the maximum visible items regardless of the position value.

       For  example,  if  DwtNitemsCount  is  10  and  DwtNvisibleItemsCount is 5, you cannot make item 8 be displayed at the top of the list box.
       Instead, items 6 through 10 would be displayed.	Setting position to 4 would make items 4 through 8 be displayed.  If DwtNvisibleItemsCount
       is 1, you can make any item in the list be displayed at the top of the list box.

See Also
       Guide to the XUI Toolkit: C Language Binding
       Guide to the XUI Toolkit Intrinsics: C Language Binding

															    DwtListBoxSetPos(3Dwt)