Android :: Use Widgets On Custom Home
Feb 19, 2009
Is there any way to re-use the existing Widgets provided by the default Launcher in a custom Launcher application? At least without going into the main android source tree in order to use the internal classes?
View 5 Replies
May 28, 2010
I thought i remember a while back somone suggested a app that would give me more home screen's on my Samsung Moment, but i can't remember the name of the app (think it was something like Helix). when I search the market i can't seem to find anything that will give me more screen's to put widgets on.
View 17 Replies
View Related
Sep 27, 2009
Are widgets currently not supporting any type of custom components? I've tried creating a very simple custom TextView component and it does not work when displaying the widget... Also, can we use the animation classes in widgets?
View 4 Replies
View Related
Feb 18, 2009
Anyone know how to make a custom widget for the desktop like the google search, clock etc?
View 2 Replies
View Related
May 10, 2010
As a continuation of the thread in http://groups.google.com/group/android-developers /browse_thread/threa, I'm still trying to figure out how a custom widget can use getIdentifier() to read attributes. As an example, I have a widget class called Custom Widget. It has attributes "inner_margin" and "outer_margin". Normally, to read these attributes, I would do the following in source code: import com.example. customactivity. R;// I don't want to do this. TypedArray a = ctx.obtainStyledAttributes(attrs, R.styleable. CustomWidget); innerMargin = a.getInt(R.styleable.CustomWidget_inner_margin, 0); Because my CustomWidget is intended to be shared among a number of projects, or even get published, it's a real problem having to import R from whatever activity it's going to be linked with. What I'd rather do is: int resid = ctx.get Resources ().get Identifier ("inner_margin", "int", "com.example.customwidget"); innerMargin = a.getInt(resid, 0); but getidentifier always returns zero. Can anybody tell me the magic I need to perform to do what I want? For completeness, my CustomWidget.xml file that defines the resources looks like this: <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="CustomWidget"> <attr name="outer_margin" format="integer" /> <attr name=" inner_margin" format="integer" /> </declare-styleable> </resources> and for even more completeness, the entire source code can be found at http://www.efalk.org /tmp/ CustomWidget.tar.gz You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android
View 2 Replies
View Related
Aug 30, 2010
I recently went from a HTC Hero to a Samsung Galaxy S and I have found that I don't really use my home screen anymore... What are some good widgets to download?
View 1 Replies
View Related
Dec 26, 2009
I added a widget to appear on the home screen, but can't figure out how to now remove it from showing up on the home screen. Any help?
View 3 Replies
View Related
Mar 19, 2010
I created a custom view extending "android.view.View" class. Now in this class can I add a widget like button or image View.
View 3 Replies
View Related
Dec 26, 2009
how do you remove widgets / app icons from the home screen? I know how to add them but haven't seen anything about removing them. I don't want to uninstall the app, just remove the widget
View 4 Replies
View Related
May 31, 2010
Many people would like to see scrollable widgets on their Home. As you may know, current Android stock Home doesn't support it, and HTC Sense doesn't provide any API.We propose to create an open source standard for an Home extension code allowing devs to create 3rd party widgets which support scrolling (list view).The principe have been implemented, and succesfully tested in Home++ and Pure messenger widget.Now, after discussing with other Home creators, we'd like to generalize this and include it in other Home applications. Few other Home applications devs are already integrating the Home++ code to evaluate this (FreedHome, Tag Home and HelixLauncher 1).Here is the list of interested parteners: - Helix Launcher - FreedHome - Tag Home - ADW Launcher - LauncherPro beta - GDE.During this first phase we'd like to focus on scrollable widgets but other extensions could be imagined (animations, gestures)If Google wants to use it for the next Android release, we would be very happy, but for now, the goal is to include it in a large number of alternative Home applications.
View 10 Replies
View Related
Mar 25, 2010
Anyone know of an app that allows you to align widgets on your home screen tighter?
View 3 Replies
View Related
Jul 29, 2009
I would like to create a widget that can reads its attributes from an XML file onCreate. I've created a Custom Button that extends Button widget. I would like to define its layout and styling in an XML, such that the widget can be reused across different views, with the same styling attributes. The notepad sample code does carry some pointers to this problem, however, it defines a XML layout with the component as View, inside LinearLayout, which is not really what I'm trying to achieve here.
View 4 Replies
View Related
Sep 14, 2010
I justed remove some pre-installed apps from my Wildfire, then when I try adding Widgets to home screen, I see the first widget named as #a5ff0000/HTC. I tap on it, an error shown: The process com.htc.RosieUtility has stopped unexpectedly. Can someone tell me explain me what Rosie Utility is, and which app that it may depend on, or some reason causes it stop.
View 1 Replies
View Related
Jun 20, 2010
I haven't confirmed if this trick can be achieved on the default or other home launchers, but just now, I was able to overlap widgets together. Could be a bug with LauncherPro. I can actually press in between the top layer of widgets to access the underlying Facebook widget.
View 2 Replies
View Related
Jun 12, 2010
I downloaded a couple widgets from HTC this evening. They show up in the widget list but wont load to home screen. Instead when I select them I am taken to a screen with uninstall and details as choices. Usually if I tap the widgets they are placed on a home screen where they can be launched.
View 1 Replies
View Related
Jul 5, 2010
I just installed Launcher Pro Beta, and am trying to "flavor" up my EVO. I really used the stock sense widgets that toggled 4g, wifi, BT, etc, but am unable to find them with the new home launcher. Am i unable to use the previously installed default widgets with this launcher/home? How about the default weather/clock combo, i can't seem to find a way to add it either. I liked the simple look of the Launcher Pro icons along the bottom, that's all i really wanted changed.
EDIT - Found it, will need Beautiful Widgets or something similar
View 2 Replies
View Related
Dec 12, 2009
I have installed GDE the replacement home screens. However when i try to add widgets the only options i have are the installed widgets and no where can i add the HTC widgets....am i missing something or is this a bug in the application.
View 5 Replies
View Related
May 3, 2010
How can you use the HTC widgets when using another home theme? For example, on my moto droid I could use GDE, panda home, or whatever and use all my widgets. with the incredible, i have noticed that i can only use basic widgets when i am using gde? like the friend stream or the message widget, i cant even find it when i have gde loaded.
View 1 Replies
View Related
Oct 24, 2013
For some reason I'm having problems deleting the widgets by dragging them into the bin. 9 times out of 10, the rubbish bin refuses to appear when I long press on a widget.
Is there another way - eg some settings menus somewhere or maybe a file that I can edit.
I am rooted
Samsung GTi5500
Android 2.2
View 3 Replies
View Related
May 15, 2014
OK so I've had this LG L70..So the stock launcher is OK but no wear near better them sum or these aftermarket launchers... Next launcher in general. Well after downloading next Launcher I tried to set up my home screens with the same widgets I had on the stock launcher with no luck. It tells me there is a problem with the widgets tap to reload. When I tap they disappear.
View 7 Replies
View Related
May 2, 2010
I loaded a wallpaper into the DCIM folder on the internal memory and after disconnecting from the computer, I changed the home screen wallpaper to this picture. (the one of the predator and alien playing chess).Now all 7 home screens are completely blank. No widgets or icons. Somehow everything on the home screens has been wiped. I removed the picture from the internal memory folder.
View 2 Replies
View Related
Oct 26, 2010
Is anyone else having a problem with Beautiful Widgets smaller home weather after the last update? I noticed on my wife's ally, when you'd go to landscape, the widget does not fill the screen end to end like it used to. It cuts off about 1/2" from each side of the screen. I have an ally also and mine goes end to end. I'm still using an older version of Beautiful Widgets though. I reverted hers back to an older version and it works like mine, going end to end, as it should. I see in the release notes on the newest release that they 'fixed' a landscape bug on smaller home weather, but it seems their fix made it not work correctly on the ally. I can't seem to find any way to contact them about this.
To elaborate on my already long post, I'm using launcher pro plus, and when I highlight the widget to resize, the highlighted box DOES go end to end. The widget does not. WTF? Is it a skin issue maybe? Something is weird.
View 2 Replies
View Related
Nov 27, 2009
Remove widgets from the home screen? I searched this forum and didn't see anything on it. I am a new owner and new to this forum and I LOVE my phone.
But it has shown me that I am not nearly as tech savy as I liked to think I was. I am a little overwhelmed with this phone.
View 3 Replies
View Related
May 4, 2010
When I long press to delete widgets or shortcuts, they open instead of giving me the option to delete. Has any one else seen this? I'm on stock
View 16 Replies
View Related
Nov 28, 2010
I recently rooted my Epic 4G following this guide: joeykrim-SDX Permanent Root for Epic (and Verizon Fascinate).I then went ahead and removed some of the "bloatware" applications using this guide here: [GUIDE] How to Remove Pre-Installed Apps for FREE - xda-developers.I did successfully root my phone, and the applications I removed are no longer there, but now the shortcuts that can be placed in the Home (or any section) no longer remain after I shutdown the phone. Widgets and Folders on the other hand do get saved by the phone and remain after a reboot.Is there something that I may have removed that shouldn't have been? and if so is it easy to recover? Would a custom ROM fix this situation? Or is there a program that I can use to restore all the default applications (without un-rooting).
View 1 Replies
View Related
Nov 27, 2010
When I move some widgets on my Home Screen, I've seen message: "The application Home screen (process com.sonyericsson.homescreen) has stopped unexpectedly. Please try again" Than I switch off x10 mini, but I've already still have this error.
View 9 Replies
View Related
Mar 24, 2010
We all know the buttons are missing.. but are there any apps that could add widgets to the home screens? Or a home replacement?
View 7 Replies
View Related
Jul 3, 2010
Is there a home replacement app that lets you use your sense ui widgets and lets you change the fonts and colors?
View 1 Replies
View Related
Mar 28, 2012
I'm redoing my home screen, and I want to have a few text icons that take me directly to specific home screens. Apex launcher has action shortcuts for this, but they are only 1x1. I cannot use widgets to get these actions... I have to use shortcuts. I have done what I want with 1x1 shortcuts, but they are just too small for my taste. I really want 2x1 shortcuts. I have not been able to figure out how to make them with either Simple Text or Desktop Visualizer.
View 1 Replies
View Related
Sep 15, 2010
I am on 2.1 and couldn't get a god damn GPS signal yesterday while driving. Is this THAT much of a problem? I am about to throw this POS out of the window. It took me 2.5 hours to get somewhere yesterday which should have been a fucking hour. What, if anything, will Sprint do? I have had this since Nov last year and I want to get rid of it.
Also, this morning, no GPS on or anything and was on charge all night, the battery went to 50 percent according to the battery widget in an HOUR.
Also, widgets being moved from 1 home screen to another while it's being used and without MY interaction.
View 6 Replies
View Related