Related
Current version: 1.0
Description: Pocket Quotes allows you to track as many stocks as you want, and to display daily/weekly/yearly charts of a stock.
Source code and CAB installer at: http://pocketquotes.codeplex.com
Last update: 6/4/09
Features:
1. Unlimited number of stocks that can be tracked
2. Can configure interval of updates
3. Can keep comma delimited file of update history
4. Pocket PC and PC versions
5. Open Source, written in Basic4ppc
Version .12
Version .12 has been uploaded to the main post.
Changes:
1. CAB installation
2. Added ability to add/delete stocks
3. Modified screen to show % change
Pocket Quotes great on my Samsung Epix
I've been looking for a stock quote app for my Epix (320x320 screen) for quite a while. Couldn't find a free/inexpensive one that worked on my display.
Thought about trying to program one for myself, but it's been a long time since I've done any "real" programming. Found this app via the forums at basic4ppc and then found the CAB installation here.
I love it! It works great! Thank you for coding and sharing this!
Had a couple of suggestions for possible future enhancements beyond those you had listed above:
Display a progress bar or message when updating stocks.
Allow the user to change the font size for the list of stocks.
Allow the user to optionally turn on/off the display of the detail box and have a longer list of stocks shown.
Allow the user to optionally input a user-friendly name to display in place of the ticker symbol on the main list. e.g. "Ford" instead of just "F".
Allow user to specify the order of the stocks, or keep them in alphabetical order.
Optionally let the user choose to display the list either with alternating colors OR with color coded backgrounds in the list box which indicate postive changes (green), negative changes (red), or no change (gray).
Implement a settings dialog to allow the user to configure any options you implement.
Publicize this app more and provide a way for people to make donations to show their appreciation
As I said, I am very grateful that you built and shared this app. You did a great job making it smart enough to adjust the display to the device on which it is running.
My suggestions are just ways in which you might enhance it to allow your users to customize it more to their liking.
4/25 Update: Found one additional issue. Can't seem to download stock market indices. For example, the Dow Jones Industrial average (symbol "^DJI"). Looks like the "^DJI" is being turned into "%5EDJI" and then not returning any prices.
gibbers said:
I've been looking for a stock quote app for my Epix (320x320 screen) for quite a while. Couldn't find a free/inexpensive one that worked on my display.
Thought about trying to program one for myself, but it's been a long time since I've done any "real" programming. Found this app via the forums at basic4ppc and then found the CAB installation here.
I love it! It works great! Thank you for coding and sharing this!
Had a couple of suggestions for possible future enhancements beyond those you had listed above:
Display a progress bar or message when updating stocks.
Allow the user to change the font size for the list of stocks.
Allow the user to optionally turn on/off the display of the detail box and have a longer list of stocks shown.
Allow the user to optionally input a user-friendly name to display in place of the ticker symbol on the main list. e.g. "Ford" instead of just "F".
Allow user to specify the order of the stocks, or keep them in alphabetical order.
Optionally let the user choose to display the list either with alternating colors OR with color coded backgrounds in the list box which indicate postive changes (green), negative changes (red), or no change (gray).
Implement a settings dialog to allow the user to configure any options you implement.
Publicize this app more and provide a way for people to make donations to show their appreciation
As I said, I am very grateful that you built and shared this app. You did a great job making it smart enough to adjust the display to the device on which it is running.
My suggestions are just ways in which you might enhance it to allow your users to customize it more to their liking.
4/25 Update: Found one additional issue. Can't seem to download stock market indices. For example, the Dow Jones Industrial average (symbol "^DJI"). Looks like the "^DJI" is being turned into "%5EDJI" and then not returning any prices.
Click to expand...
Click to collapse
Thanks for the feedback and suggestions - I had stopped working on this because it didn't look like there was any interest. I'll take some of your ideas and add them to the next release (which will be after I finish taking the PMP certification - preparing for that is taking up a lot of my spare time)
I'll check on the DJ symbols - they should work since it works within Yahoo and I'm using the Yahoo feed for updates.
also eur/usd parameter should b configurable as well...
good appz
gibbers said:
I've been looking for a stock quote app for my Epix (320x320 screen) for quite a while. Couldn't find a free/inexpensive one that worked on my display.
Thought about trying to program one for myself, but it's been a long time since I've done any "real" programming. Found this app via the forums at basic4ppc and then found the CAB installation here.
I love it! It works great! Thank you for coding and sharing this!
Had a couple of suggestions for possible future enhancements beyond those you had listed above:
Display a progress bar or message when updating stocks.
Allow the user to change the font size for the list of stocks.
Allow the user to optionally turn on/off the display of the detail box and have a longer list of stocks shown.
Allow the user to optionally input a user-friendly name to display in place of the ticker symbol on the main list. e.g. "Ford" instead of just "F".
Allow user to specify the order of the stocks, or keep them in alphabetical order.
Optionally let the user choose to display the list either with alternating colors OR with color coded backgrounds in the list box which indicate postive changes (green), negative changes (red), or no change (gray).
Implement a settings dialog to allow the user to configure any options you implement.
Publicize this app more and provide a way for people to make donations to show their appreciation
As I said, I am very grateful that you built and shared this app. You did a great job making it smart enough to adjust the display to the device on which it is running.
My suggestions are just ways in which you might enhance it to allow your users to customize it more to their liking.
4/25 Update: Found one additional issue. Can't seem to download stock market indices. For example, the Dow Jones Industrial average (symbol "^DJI"). Looks like the "^DJI" is being turned into "%5EDJI" and then not returning any prices.
Click to expand...
Click to collapse
I fixed the VGA display (Portrait only) and tested the Dow Jones - it doesn't work because "^DJI" is passed as part of the string and http doesn't like that. I need to urlencode it and see if that works.
I'll work on some of the other suggestions and get a developer's release out soon.
Version D-14
I have placed version D-14 (developer's release) on the main post. Unzip and copy to your PDA.
I have not implemented any of the excellent suggestions yet - I'm working on stabilizing the core functionality before I start adding to it.
Changes included in this release:
1. Added a splash screen on start-up (it's downloading stock updates in the background)
2. Fixed sort when adding stock symbol
3. Fixed VGA display (still only Portrait though)
4. URL encoded "^" for DJI - but it still doesn't work. I need to work with the Yahoo RSS feed to see why not
5. Fixed delete symbol bug (it didn't update all of the arrays, causing the wrong details to be displayed on a symbol)
For anyone with B4PPC, I added the source code to the zip file. Requires the ListView and fgControls library (included)
Feedback and suggestions are welcome.
UPDATE: Version D-14 uploaded to first post. I had left off a zero in the timer control, causing the program to refresh 6 seconds x setting - needed to be every 60 seconds per each minute in the setting.
Release D-15
Release D-13 has been uploaded to the main post
Changes:
1. Add downloading of stock chart when selecting stock symbol
2. Organized program images into gfx directory
3. Minor bug fixes & tweaks
Downloaded and tried D-15. Couple of new issues introduced.
Delete does not seem to be working for me. I can select it from the context menu, but after a brief delay it just repaints the screen without deleting anything. I can add stocks, but can't delete them without editing the pocketquotes.ini file.
Also the detail display is no longer displaying properly on my Epix (320x320 resolution). The bottom of the first row of characters with stock name is cut off, and I can only see the "Close" and "Highest" labels. The close price displays OK, but the Highest price gets truncated on the right (even though there is space on the screen to display it.) Also the bottom line which displays the last trade date is ovelaying other data and the bottom of the last trade text is also cut off.
Finally, in the Add dialog, it looks like there may be a display problem. But I think it was there before too. Below the label which says "Enter Stock", it looks like there is something there, but I can only see a few of the top pixels above the Cancel button.
Just reverted back to D-13 version, and it appears delete does not work for me with this version either. In this version, If I delete a stock, it is removed from the list. But it reappears when I close and reopen the app.
Do you have access to an emulator to see how it runs on a square screen device? If not I could probably figure out how to get a screen cap if it would help.
gibbers said:
Downloaded and tried D-15. Couple of new issues introduced.
Delete does not seem to be working for me. I can select it from the context menu, but after a brief delay it just repaints the screen without deleting anything. I can add stocks, but can't delete them without editing the pocketquotes.ini file.
Also the detail display is no longer displaying properly on my Epix (320x320 resolution). The bottom of the first row of characters with stock name is cut off, and I can only see the "Close" and "Highest" labels. The close price displays OK, but the Highest price gets truncated on the right (even though there is space on the screen to display it.) Also the bottom line which displays the last trade date is ovelaying other data and the bottom of the last trade text is also cut off.
Finally, in the Add dialog, it looks like there may be a display problem. But I think it was there before too. Below the label which says "Enter Stock", it looks like there is something there, but I can only see a few of the top pixels above the Cancel button.
Just reverted back to D-13 version, and it appears delete does not work for me with this version either. In this version, If I delete a stock, it is removed from the list. But it reappears when I close and reopen the app.
Do you have access to an emulator to see how it runs on a square screen device? If not I could probably figure out how to get a screen cap if it would help.
Click to expand...
Click to collapse
First, thanks for the feedback.
When you delete a stock, it should go to the download routine (it will display the download image) and then repaint the screen. On my PDA it does not put the symbol that was deleted back there.
Can you send me the stock symbols that you are using? I'll try a test with that.
As for the display on 320x320 - that is a resolution that I've always had mixed results with. I think I am going to remove the stock detail area at the bottom and display it when you click on the symbol (the one that shows the chart) This will make it easier to program as I can use the entire available screen for listing the stocks.
I'll check the add code. I may need to add a refresh or something to force a screen update. There should be a panel with an input box. I did notice it does a refresh download (which it shouldn't do at this point)
Last, I'll install the emulators so I can run some additional testing.
Version D-16
gibbers said:
Downloaded and tried D-15. Couple of new issues introduced.
Delete does not seem to be working for me. I can select it from the context menu, but after a brief delay it just repaints the screen without deleting anything. I can add stocks, but can't delete them without editing the pocketquotes.ini file.
Also the detail display is no longer displaying properly on my Epix (320x320 resolution). The bottom of the first row of characters with stock name is cut off, and I can only see the "Close" and "Highest" labels. The close price displays OK, but the Highest price gets truncated on the right (even though there is space on the screen to display it.) Also the bottom line which displays the last trade date is ovelaying other data and the bottom of the last trade text is also cut off.
Finally, in the Add dialog, it looks like there may be a display problem. But I think it was there before too. Below the label which says "Enter Stock", it looks like there is something there, but I can only see a few of the top pixels above the Cancel button.
Just reverted back to D-13 version, and it appears delete does not work for me with this version either. In this version, If I delete a stock, it is removed from the list. But it reappears when I close and reopen the app.
Do you have access to an emulator to see how it runs on a square screen device? If not I could probably figure out how to get a screen cap if it would help.
Click to expand...
Click to collapse
I have uploaded D-16 to the main post.
Changes:
1. Stock detail info moved to chart page; main page only shows list of stock symbols
2. Moved "Add Stock Symbol" from pop-up panel to new page; should display
I am in the process of setting up the emulators, but since function has been moved off onto a separate page, they should display properly on all screen sizes (portrait mode only)
Display Issues on Samsung Epix
Looks like Version D-16 still has some issues on my phone.
It appears that the details display area shrunk between version D-13 and D-15.
D-13
D-15
And the chart display area grew between version D-15 and D-16.
D-15
D-16
In terms of the Add Panel, it looks pretty much the same in all three versions, and is functional. Is there some text cut off which is peeking up from behind the cancel button on my display?
D-13
D-15
D-16
In the attached images, note that the ^DJI chart does display. It's just the quotes for ^DJI and other indices that don't work. Maybe a clue to fixing it? Or maybe not.
I still can't delete any symbols from the UI. I'm going to try deleting the ini file, since it was originally created with an old version, and manually edited on my PC. I figure a fresh start couldn't hurt and so far I don't have many symbols to re-add anyway. Will let you know how that works out.
I like the idea of the combined chart and details screen. If you can figure out how to get the display area for details to be sized right (as it was in D-13), then maybe you could use whatever is left on the screen to display the chart.
Also meant to add, that the display of the actual stocks on D16 works well. Just missing the data for the market indices.
I appreciate the work you are putting into this. I think you are on your way to a great little utility here.
Tried with a brand new .ini file. Similiar issues. It appears that you created a default .ini with the auto companies. I deleted all except HMC without issue. Then I added all the symbols I had before. And tried to delete several. None could be deleted. Except the HMC one. Then I couldn't delete others. The only thing I could see was that HMC was first entry on the list in the .ini file. And the remainder of the entries were NOT in alphabetical order. Are they supposed to be in alpha order in the .ini file? Could it be that the indices are somehow messing things up?
gibbers said:
Tried with a brand new .ini file. Similiar issues. It appears that you created a default .ini with the auto companies. I deleted all except HMC without issue. Then I added all the symbols I had before. And tried to delete several. None could be deleted. Except the HMC one. Then I couldn't delete others. The only thing I could see was that HMC was first entry on the list in the .ini file. And the remainder of the entries were NOT in alphabetical order. Are they supposed to be in alpha order in the .ini file? Could it be that the indices are somehow messing things up?
Click to expand...
Click to collapse
That sounds like it could be the problem why it's not deleting; the "^" symbol is messing things up.
The screen display is cutting off some information on the 320x320 display (works ok on VGA and QVGA) - I have some code that I need to apply to setting the form for 320x320. It's really a simple calculation where if the display is 320 I use an offset factor of 1.25, and if its VGA I use an offset factor of 2. I just need to apply this for your display.
Thanks for the images - it helps me to see what is happening. I'm having trouble getting the networking to work within the emulator so it's not downloading stock data (I may have to build an off-line mode to work around this)
I'll get an update back to you later today.
Version .19
Developer's Release .19
1. Added "splash" screen when updating stocks
2. Added configuration to change list row colors
3. Moved stock info to graph screen - main shows only list of stocks
4. Fixed sort when adding new stock
5. Fixed SIP when adding stock
Still working on some of the other suggestions.
I will cab this on the next release. I'm going to add in a update from web feature (I just implemented the same on pocket quotes) so that users can be sure that they always have the latest version.
Release 1.0
I've updated "Pocket Quotes" and released the first public release 1.0 with source code on my wiki: http://campusbbs.freehostia.com/doku.php?id=pocket_quotes
See main post for screen shots.
Some of the features added:
1. Additional charts added (now includes daily, weekly, yearly)
2. Update from the web
digitaldon37 said:
I've updated "Pocket Quotes" and released the first public release 1.0 with source code on my wiki: http://campusbbs.freehostia.com/doku.php?id=pocket_quotes
See main post for screen shots.
Some of the features added:
1. Additional charts added (now includes daily, weekly, yearly)
2. Update from the web
Click to expand...
Click to collapse
Thank you for making a stock quote program. I have been looking for a long time and there are relatively few programs that work well. I like many of the things you have done but there are some things I like from other community members. Please take a quick look at the post below.
http://forum.xda-developers.com/showthread.php?t=476613
I like the way each stock line shows red or green depending on stock up/down or profit/loss. Also, its nice to have the added screen space that the scroll bar takes up. Perhaps the scroll bar is not needed?
TL;DR:
Recently I have been working to get my homescreens a little cleaner. I started using a tool called DesktopVisualizer. It allows for "Tiles" or "Icons" to be placed as shortcuts instead of the icons you normally use. It allows for a cleaned up WP7 look. The one major drawback is you have to download "tile packs" or make them yourself. The app is great, but the problem is in our gallery app.
OUR STOCK GALLERY SCANS AND LOADS ALL THE 300+ TILES/ICONS IN TO MY GALLERY! I could not stand this! I started looking into how to hide stuff from the media gallery.
Hiding Folders: "." Folders and ".nomedia" Files:
Turns out they built a neat function into android that allows for hiding things from the gallery: a .nomedia file. Placing a blank file with that name into a directory (or root directory) causes the STOCK GALLERY to skip over the folder. So, if you are like me and have some naughty pics of your g/f, ALBUM COVERS, or other misc pics you dont want to see in the gallery; drop that little file in there and it will skip it.
Another way to accomplish this is to stick a . in front of the folder name. If you have a folder called "Pr0n" change it to ".Pr0n". This will do the same thing as the nomedia, however some apps/file explorers cannot see these guys as this is the "hidden attribute" for the folder.
The problem with the Atrix, and other devices that have custom galleries, is they scan EVERYTHING. You can place nomedia files in, periods, anything, they still come parading in to the gallery. "What the hell can I do", you ask? Well, we put in a nice new gallery.
Gallery3d.APK:
Ok, so I have attached the AOSP type of gallery from CM7. I think I "heard" some place that the CM7 gallery is tweaked a little, however I didnt notice any differences. So, download and install as normal, sideload it, whatever. Once its on, you are good to go. The only problem, if you freeze the 2.3.4 gallery from Moto, the camera app wont pull your pics. Everything in the cam still works as far as functionality to take pics. The problem is when/if you click on the small pic in the corner of the view finder(your gallery), it will give some error about "No gallery installed". I'm sure there is a way around this, but for now I just have both installed and use only the 3D gallery. Using LauncherPro I hid the other icon to keep "phone handlers" from going through my UBER gallery when they pick up my phone to play with it. This way I get the nice gallery3d, but still get the full sharing functionality of the moto gallery should I want to share straight from my camera.
There you have it. I have given you the the gallery apk, pros and cons, and how to hide folders. Knock yourselves out. OH! If you happen to get the cam to work with the 3D instead 2.3.4, please post a how to in here as well.
Thank you so much i have been wanting this on my atrix i hate the new galery in moto
Also check out Gallery Excluder in the Market for hiding folders with this method.
Sent from my MB860 using XDA Premium App
How do I get to the file on my Moto phone
basic Gallery questions....
I moved nearly 400 pictures from my PC to an SD card and uploaded them the Picture folder on the Prime. I then used Gallery to browse them - pretty nice but.
- the order that Gallery browses in from newest to oldest - I want to browse from oldest to newest. The picture properties were preserved. The file names from the camera is still preserved. How can I sort by date taken or filename? It is not obvious to me.
- some of the pictures required some editing. I lightened some up and hit "save" - popup said it was "saved to edited album". I then hit back (lower left back - not edit back) to return to the browse mode and the picture appeared as if it were not edited. Where does Gallery save the new picture? I would have thought it would have saved it in the album hat is being browsed.
I know these are basic questions - but it is the easy stuff not being obvious that is most annoying. Thank for any pointers or links to Gallery how-tos
For me AOSP is still the best browser, it is quick, smooth and still does flash... The major problem I always had with it is that websites always loaded zoomed in (like almost every Android browser) because the viewport used to render the page was small. This has always been too big and blurry on all the 10 inch tablets I've had. The fix for this was to enter "about:debug" menu and untick "use wide viewport" in debug settings. I'm sure some of you have done this plenty, however this option never stuck and I had to manually enter "about:debug" every time I started the browser which gets confusing and annoying.
But now thanks to a handy XDA thread a quick recompile I can now browse with the correct zoom to my heart's content. The browser now loads in debug mode by default rendering pages spot on.
Before:
After:
This the AOSP browser was taken from this thread: http://forum.xda-developers.com/showthread.php?p=35551725#post35551725 recompiled apk is attached below.
Here are the instructions from that thread to install the browser:
Turbotab said:
> Must be rooted.
> Copy the browser.apk into the system/app folder
> With a root file explorer change the file permissions of the browser.apk to -rw-rw-r (you will see this represented as 664) If you don't do this, it won't install.
> You must rename the BrowserProviderProxy.apk & BrowserProviderProxy.odex otherwise the browser will force close, just add a 1 to the name e.g. 1BrowserProviderProxy.apk1 Do not delete them, if you still want to OTA update Android. Android checks for any changes to the system/app folder before performing an OTA, so you will have to delete the browser.apk and rename the two file back to stock, when it is OTA time.
Click to expand...
Click to collapse
Once you have restarted your device for the app to install you will need to open the browser and go into settings -> Debug and untick "use wide viewport" you should also untick the "show javascript console" box as we don't need it.
And you should be able to enjoy your quick browser without having your pages all zoomed in.
The chrome sync from the other thread should still work with this browser, but I have not tried it and cannot confirm this. The usual disclaimers apply, the apk is provided "as is".
Thanks to the original people who brought out the browser.apk in the original threads and thanks to the guy in this thread for the guide on how to keep the browser in debug mode and thanks to the other threads on xda which helped me in how to recompile apks. Hope I'm not stepping on any toes and have posted in the right place.
And here's my current favourite browsing setup on my nexus 10:
Status bar hidden courtesy of GMD, status pie menu from LMT and the quick controls enabled in the labs menu of AOSP, with all of those mods you can see almost twice as much webpage
v4nt0m said:
For me AOSP is still the best browser, it is quick, smooth and still does flash... The major problem I always had with it is that websites always loaded zoomed in (like almost every Android browser) because the viewport used to render the page was small. This has always been too big and blurry on all the 10 inch tablets I've had. The fix for this was to enter "about:debug" menu and untick "use wide viewport" in debug settings. I'm sure some of you have done this plenty, however this option never stuck and I had to manually enter "about:debug" every time I started the browser which gets confusing and annoying.
But now thanks to a handy XDA thread a quick recompile I can now browse with the correct zoom to my heart's content. The browser now loads in debug mode by default rendering pages spot on.
This the AOSP browser was taken from this thread: http://forum.xda-developers.com/showthread.php?p=35551725#post35551725 recompiled apk is attached below.
Here are the instructions from that thread to install the browser:
Once you have restarted your device for the app to install you will need to open the browser and go into settings -> Debug and untick "use wide viewport" you should also untick the "show javascript console" box as we don't need it.
And you should be able to enjoy your quick browser without having your pages all zoomed in.
The chrome sync from the other thread should still work with this browser, but I have not tried it and cannot confirm this. The usual disclaimers apply, the apk is provided "as is".
Thanks to the original people who brought out the browser.apk in the original threads and thanks to the guy in this thread for the guide on how to keep the browser in debug mode and thanks to the other threads on xda which helped me in how to recompile apks. Hope I'm not stepping on any toes and have posted in the right place.
And here's my current favourite browsing setup on my nexus 10:
Status bar hidden courtesy of GMD, status pie menu from LMT and the quick controls enabled in the labs menu of AOSP, with all of those mods you can see almost twice as much webpage
Click to expand...
Click to collapse
Thanks, was about to ask for a screen comparation! Awesome. However, I can't find the option that you say we have to untick (usew wide viewport). My browser is in spanish and I can't find it, where is it?
I'm not at my tablet at the moment but make sure you're in the settings menu, the debug option is at the very bottom.
I am looking at the screen on my phone and "use wide viewport" is the 8th option down, the javascript console option is the 6th option down.
I'll check where the options are on my tablet when I get home to be sure.
v4nt0m said:
I'm not at my tablet at the moment but make sure you're in the settings menu, the debug option is at the very bottom.
I am looking at the screen on my phone and "use wide viewport" is the 8th option down, the javascript console option is the 6th option down.
I'll check where the options are on my tablet when I get home to be sure.
Click to expand...
Click to collapse
Oh, for me the java option is the 3rd in Settings - Adavanced. Seems it's pretty changed.
Hi, you seem to be in the wrong settings menu, you should have another option as below labelled as debug:
It is the same on here, the viewport option is 8th down. If you do not have the debug option type about:debug into the address bar and go back into settings. Have you definitely installed the browser apk from my post?
v4nt0m said:
Hi, you seem to be in the wrong settings menu, you should have another option as below labelled as debug:
It is the same on here, the viewport option is 8th down. If you do not have the debug option type about:debug into the address bar and go back into settings. Have you definitely installed the browser apk from my post?
Click to expand...
Click to collapse
I did on my nexus 10 but I was looking to the settings menu from a nexus 10 that hasn't got your modified aosp browser, I guess that's why! Sorry lol.
The 4.2.2 Evervolv Browser.apk works great.
I think maybe I'm trying to defeat the purpose of Themer, but I'm not sure. A lot of the themes I like have a tab or screen or something for music. I'd rather have that be navigation or something like that. So the one I'm working with right now is called Bookmarks. The last page has a headphone for the icon and the actual screen says Music. Is it possible to edit this?
Also, is there any place to download the theme to my computer so I can play with it there before loading on to my phone?
Thanks!
NUGGET_BRAIN said:
I think maybe I'm trying to defeat the purpose of Themer, but I'm not sure. A lot of the themes I like have a tab or screen or something for music. I'd rather have that be navigation or something like that. So the one I'm working with right now is called Bookmarks. The last page has a headphone for the icon and the actual screen says Music. Is it possible to edit this?
Also, is there any place to download the theme to my computer so I can play with it there before loading on to my phone?
Thanks!
Click to expand...
Click to collapse
Hi there,
Themer is in essence a launcher. So much like the other top launchers out there, you are able to add/edit/move widgets and so forth. Regarding this theme, unfortunately the music icon on the tab can't be changed (it's baked into the wallpaper), but you could always just place another icon over it if you wanted.
So, in order to edit/move widgets, it's very simple. Hold down on the homescreen > Unlock Widgets, now hold down on the music player widget and select Remove. However, this will remove the "hotspots" that enable you to jump from screen to screen. So another way would be to hold down on the music widget > Configure, this will open the Everything Widget editor. From here, select a music item > Music (at the bottom) > Delete object. Repeat this for all the music items, then press back to exit the editor.
Next, hold down on the homescreen at the very top > Apps > Widgets tab > your navigation widget (or app icon), which you can then drag and drop onto the blank area. Now you can hold down on the widget and select resize to make any adjustments, and once everything looks good you can hold down on the top again and select > Lock Widgets.
Unfortunately you can only see the Themer themes on the app, but we might expand on that in the future...
Hope this helps!:fingers-crossed:
ThemerSupport said:
Hi there,
Themer is in essence a launcher. So much like the other top launchers out there, you are able to add/edit/move widgets and so forth. Regarding this theme, unfortunately the music icon on the tab can't be changed (it's baked into the wallpaper), but you could always just place another icon over it if you wanted.
So, in order to edit/move widgets, it's very simple. Hold down on the homescreen > Unlock Widgets, now hold down on the music player widget and select Remove. However, this will remove the "hotspots" that enable you to jump from screen to screen. So another way would be to hold down on the music widget > Configure, this will open the Everything Widget editor. From here, select a music item > Music (at the bottom) > Delete object. Repeat this for all the music items, then press back to exit the editor.
Next, hold down on the homescreen at the very top > Apps > Widgets tab > your navigation widget (or app icon), which you can then drag and drop onto the blank area. Now you can hold down on the widget and select resize to make any adjustments, and once everything looks good you can hold down on the top again and select > Lock Widgets.
Unfortunately you can only see the Themer themes on the app, but we might expand on that in the future...
Hope this helps!:fingers-crossed:
Click to expand...
Click to collapse
Thanks for the reply! I'd LOVE to be able to see it on my computer. It would be a lot easier to move things around without having to fat finger it!
you can however edit the wallpaper yourself I have done to walls that have embedded items and changed them to how I wanted,just use photoshop
inshallah said:
you can however edit the wallpaper yourself I have done to walls that have embedded items and changed them to how I wanted,just use photoshop
Click to expand...
Click to collapse
How do you get the wallpaper from the theme to PS?
It's easy to change the text/icon and you can replace any "hotspot" to point to a new app.
Larger wholesale changes to screens are a bit tougher.
Sent from my Nexus 4 using xda app-developers app
Ok, I did as was instructed to remove the music. If I'm on the home tab, I can still hit the tab for weather. But if I'm on the 'music' tab, I can no longer move to another app. How do I make a hot spot to be able to go to other tabs from music?
to edit via photoshop grab the paper from the themer folder for the theme you are using,add it to photoshop grab the full image then create new image same size,copy original pic to new photoshop pic then simply edit as required and save when finished,sounds easy I know but if you are familiar with photoshop it is easy
NUGGET_BRAIN said:
Ok, I did as was instructed to remove the music. If I'm on the home tab, I can still hit the tab for weather. But if I'm on the 'music' tab, I can no longer move to another app. How do I make a hot spot to be able to go to other tabs from music?
Click to expand...
Click to collapse
Did you delete the widget? That would've removed all the hotspots (only way to fix this is to re-apply the theme, for now). Apologies if I didn't explain well enough, but deleting only the music items should leave the hotspots on the left intact. Hope this helps