Samsung Theme Builder Thingy - [Tool/Source] - Samsung Galaxy S8 Themes, Apps, and Mods

Oh hey guys.... I didn't see ya there. Welcome to my Theme Builder Thingy. So you're probably wondering what exactly this is. Well I'm glad you asked. But first I need to give a huge shout out to my good ol' carnt of a bloke pal @daveyannihilation for his ongoing support for making this. He didn't do anything but he was very encouraging in our group chats. so make sure if you see him around you say hello.
So what this is, is source code essentially to be able to construct a Samsung theme in Android studio. I tried the old leaked Samsung Theme tool and albeit does work, it's less than ideal and honestly it's a bit dated. Feel free to still use it because there are some advantages it has. However from what I gathered folks are using other things like apktool to make their themes and in order to do that you'd have to take someone else's base which I personally am not a fan of doing. Not to mention how cumbersome it is decompiling tons of apps, converting stuff to or from .qmg or whatever and then, recompiling and signing with a generic debug key. Too much of a pain.
Now to be clear this tool or thingy.... Yeah let's call it a #Thingy because why not. So this Thingy does not work the same way that the Samsung tool works in that you'll still need to make your own images and xmls. Because well I'm not doing it for you! But this will build your theme properly and securely. Anyone who's using an antivirus app like: lookout or whatever will get annoying notifications saying you're using "riskware" when installing a theme through other methods. That's because it isn't built properly or securely.
This will make your theme using a private signing key and should you decide to you can upload your theme directly too google play and it will pass and be just fine.
But wait.... There's more.... I've done basically all the work for you in regards to how it builds. You can literally drag and drop the contents of your res folder in this, change a few names via batch and build it and then bob's your uncle.
The key to this is to follow the instructions. I've went step by step, button for button on virtually everything you need to do to use this so if you experience an issue then chances are you didn't follow them.
You can ask for some support in here if you're truly stuck on something but you really should try to figure this out. It's really not that difficult to do, although putting this together and getting this to work was an absolute nightmare!
So. below are the instructions which are also built into the source. Please keep in mind that every file included in the source is there for a reason. You do not need to delete anything in there unless it tells you to in the instructions!
Bottom line, this is a very fast and efficient way in which to create a theme without kanging someone else's base and just changing stuff up. Again, we're building from source here so to speak so that's what I consider the right way of doing things.
Now if you don't feel this Thingy is for you that's totally fine. I will not lose sleep should you choose other methods. However there will be some who find this very handy so. I'll leave you with the instructions and then give a few shout outs to a few people who gave me a few suggestions, and let me bounce ideas off them.
@sykopompos @nicholaschum @Venom0642 for unknowingly letting me use his theme for proof of concept purposes! @bigmase23 for being > @freeza + cobs combined .
Instructions:
#Samsung theme Template Builder Thingy by Mark Bencze Theme Template for Samsung 7.0 phones Alt text
First things first. You need to use only .png and .xml format. DO NOT USE .qmg or any other extension.
Step 1: import project into android studio Step 2: allow Gradle to finish doing it's thing. You'll notice a progress bar at the bottom doing stuff. It may take a few minutes depending on your computer. Step 3: on the left side of the page close to the top you'll see a "project" tab written vertically along with the android studio icon below it. Click on that. Then just to the right and above it you will see an "Android" tab with a drop down menu. Click the menu drop down and select "Project". This may trigger gradle to do it's thing again. If it does, let it finish. Step 4: You will see "offical theme tool source" folder. click on it to expand it. This is what we're working with. Do not worry about or touch "External Libraries" Step 5: While you have "offical theme tool source" selected (highlighted) go to the edit tab at the top of the screen. Step 6: Go to find, Replace in path and search for "com.yourname.themename". Replace that with whatever you want to call it. This should be self explanitory on the naming of it. make sure in this pop up menu under scope that you have "whole project" selected and then press find. This will change 675 files give or take. you want to select "yes to all" when asked. Step 7: In the folder _app/src/main you will find you AndroidManifest.xml. Enter the name of your theme there. You do not need to use an underscore _ You can use a space if you wish.
Now this next part is very important. Failure to follow this will cause your theme to fail to work. The manifest I have provided in the _apps folder has about 60 or so asset names. So does the json.file and you'll also notice that you have the same amount of folders in this source. All three of these must match. For example: If you do not wish to use the asset "touchwiz" in your theme, you must delete that reference carefully from the AndroidManifest, json.file as well as remove the folder from the source to the source. The three things need to communicate and jive with each other and if you do not have them all in sync you will get an error during installation of the theme on your device saying in a toast message "Master Package Not Formed Properly". So if you get this, it is your fault not mine! I warned you!
Remember that if your manifest says to build the touchwiz apk and you don't have it or, you've improperly named things within that apk the theme will not build properly. That should make sense right?
Ok great that wasn't hard at all was it?
The next part is for if you want to add additional assets. If you do not with to you can skip to the "Build Part". Now let's say you have additional assets you with to add to this ie: navbar. For one always use lower case letters when adding a new asset apk to this (including the manifest). The same rule applies that we just spoke about. Add the name to your manifest and your json.file first. Then call the folder whatever it's called. ie: "navbar". do not call the folder "com.navbar" or anything like that. So what you need to do is take an existing asset folder and make a copy of the folder. for example settings folder. You'll then change the name of your folder that you made a copy of to "navbar" since that's the example we're using right now. You will notice there is a .iml file as well inside our copy. We need to change the name of that to "navbar.iml" in order to have the asset apk form properly. You can do this either inside android studio by either right clicking on the file and going to "refactor" and then rename. Or you can do this outside of android studio. You do not need to open the .iml file and edit it. You do however need to open the build.gradle file for the app and change the last part of the app name located on line 8. This will still be showing the original app name. We don't want to make a duplicate right? So make sure you adjust that. The build.gradle is really the brains of the operation in this whole program. As you can see they actually control everything and will overwrite your manifests. You do not need to touch the manifest for each asset apk either.
So now you will see a "settings.gradle" file at the bottom (directly below this readme file!!!) open this file. At the top you will see a series of asset folder names that are identical to the names of the folders already provided in here. So if you want to add a new asset you must also reference it here. Follow the structure of how this is already written to add another one in. It's as simple as writing: ie: ":appname", Just remember that at the very end there is no comma!
"Build Part" So you're ready to test your theme and just want to build it. At the top go to the "build" tab and select "build apk". This will build all your asset apks in a min or two depending on the speed of your computer. When it's done you'll see a notification telling you it was successful. You can go see for yourself by going to _app/src/main/assets and you will see your asset apks. Next you need to build the main apk. Go back to the build tab and this time select build signed apk. You will now need to either make a private signing key or use an existing one if you have one. It's not hard to make one so figure that out or google it. the first popup window shows the theme being on the _app folder. that's where it needs to be so do not select anything else or it will not make the apk. So next go through the signing key process. On the last part you will select the version you want to make. Either Release or debug. By default it will be set to Release. Keep it this way and select both check boxes for jar and apk signature under signature versions. Then hit Finish and you're all done! In about 2 seconds your theme will be made and ready to install!
I hope you find this tool useful! It was a huge pain in the ass to make this and a lot of work!
Download Theme Builder Thingy Template

May want to snag this post for future reference

But wait.... there's more...

Holy hell I can't wait to use this. Thank you you're a god

Excellent mate glad you made this tool , As you mentioned using my themes to get stuff going is great, which now this tool is gonna make my life easier in making my Samsung custom themes, Great job ???
Sent from my Samsung Galaxy S8+ using XDA Labs

Congrats bro, excellent work as always!!

@markbencze
Great job bud..... finally after alot of hours.... all worthed and could be the new beginning for samsung theming world.

I won't be using this but because of your new tool I'm sure we will see even more custom themes start to pop up and for that I thank you good sir. Awesome work!

tytydraco said:
Holy hell I can't wait to use this. Thank you you're a god
Click to expand...
Click to collapse
lol My wife says otherwise!!!

#ThemeThingyFTW

Lol you're an idiot Mark. No one who cares about open source should support Samsung smartphones in any way, shape or form. If you wanna do it, then you go for it. But don't bring me into this. I'd sooner buy an iPhone than one of these hunks of junk.

Meke Blackscreen OS theme! Nao!
Good job on this Bencze... I'm glad you stuck with it!

This is an awesome Thingy Mark! Great job and Thanks man

daveyannihilation said:
Lol you're an idiot Mark. No one who cares about open source should support Samsung smartphones in any way, shape or form. If you wanna do it, then you go for it. But don't bring me into this. I'd sooner buy an iPhone than one of these hunks of junk.
Click to expand...
Click to collapse
Lol you had to know this was coming and know I couldn't resist! #TeamCarntOut

Jayrod76 said:
Meke Blackscreen OS theme! Nao!
Good job on this Bencze... I'm glad you stuck with it!
Click to expand...
Click to collapse
Thanks big guy. Almost gave up a few times

Awesome work bro!

cbucz24 said:
Awesome work bro!
Click to expand...
Click to collapse
Thanks big guy. Now we just gotta wait for ws to kang it and just change the wallpaper lol!

markbencze said:
Thanks big guy. Now we just gotta wait for ws to kang it and just change the wallpaper lol!
Click to expand...
Click to collapse
hy man can i ask a favour
can u zip last samsung theme editor you use because on mine i need to download last version if i donìt download i canìt open the app..
i reg and do it all thinks in samsung developer but i'm waiting again more than 3 weeks. can u give to me last theme via pm if you can

alex393 said:
hy man can i ask a favour
can u zip last samsung theme editor you use because on mine i need to download last version if i donìt download i canìt open the app..
i reg and do it all thinks in samsung developer but i'm waiting again more than 3 weeks. can u give to me last theme via pm if you can
Click to expand...
Click to collapse
Dude I don't have a clue what you're saying. Please restate what you're asking me and try to be more coherent and specific on what you're saying. I have no problem offering support but you lost me at hy

I might use this soon. Let me just put this out here, your post, the op, is actually amazing. I love the way your wrote it. You are great.

Related

how to remove titles of apps?

im not sure if it is available to do yet but i am currently running 2.1 Eclair Hero Rom (Eugene373)
as currently with any ROM for example browser icon would show the 'browser' title. is there anyway that we can removing titling for the application shortcuts on the homescreen without using different UI (home replacements)?
Akademist101 said:
im not sure if it is available to do yet but i am currently running 2.1 Eclair Hero Rom (Eugene373)
as currently with any ROM for example browser icon would show the 'browser' title. is there anyway that we can removing titling for the application shortcuts on the homescreen without using different UI (home replacements)?
Click to expand...
Click to collapse
I don't know if you can ... I know that when developing the app for example in eclipse, that is the first thing you do. you set the title of the app.
You like many other people are still posting these questions in development. I kindly ask if you can please read the first post in development. It explains where this post should be posted.
have a good day!
I don't know the answer I'm afraid but this would be better placed in the developers thread or even in Q&A.
Please take the time to read the stickied threads on the forum, the last one in particular.
Hope you find what your looking for.
Akademist101 said:
im not sure if it is available to do yet but i am currently running 2.1 Eclair Hero Rom (Eugene373)
as currently with any ROM for example browser icon would show the 'browser' title. is there anyway that we can removing titling for the application shortcuts on the homescreen without using different UI (home replacements)?
Click to expand...
Click to collapse
That is part of the icon
Advanced Launcher does this. Why not just answer the question, fellas?
cashless said:
Advanced Launcher does this. Why not just answer the question, fellas?
Click to expand...
Click to collapse
That doesnt support 2.0+..
cashless said:
Advanced Launcher does this. Why not just answer the question, fellas?
Click to expand...
Click to collapse
Both me and Rooktard said we did not know the answer and was merely trying to move him to the appropriate place to post.
If people didn't understand where to post then we would never be able to find any roms or mods due to the amount of junk being posted anywhere. That is why the site managers wwent to the trouble of providing a structured format for each differing section.
The only true way to help them is by steering them onto the correct path making it a more enjoyable experience for everyone.
PHP:
shadowch31 said:
Both me and Rooktard said we did not know the answer and was merely trying to move him to the appropriate place to post.
If people didn't understand where to post then we would never be able to find any roms or mods due to the amount of junk being posted anywhere. That is why the site managers wwent to the trouble of providing a structured format for each differing section.
The only true way to help them is by steering them onto the correct path making it a more enjoyable experience for everyone.
PHP:
Click to expand...
Click to collapse
True. Not a problem at all.
---Begin generalities talk---
Its just that this place is getting kinda miserable with all the "WRONG FORUM" replies. It's just a simple mistake, it doesn't need to be repeated by several people in the same thread.
---End said talk---
Carry on...
Ace42 said:
That doesnt support 2.0+..
Click to expand...
Click to collapse
indeed...
Not reading the signature = fail
cashless said:
True. Not a problem at all.
---Begin generalities talk---
Its just that this place is getting kinda miserable with all the "WRONG FORUM" replies. It's just a simple mistake, it doesn't need to be repeated by several people in the same thread.
---End said talk---
Carry on...
Click to expand...
Click to collapse
Well the repeat was due to both repling at the same time as this is not live I cannot see what's replied to whilst I type.
And we had a thread last night that got silly because rather than help I posted something that got some upset.
Seems being nice gets you the same amount of people unhappy as just being straight to the point.
Guess we just can't win with some .....
oohhh! i am very sorry i totally forgot to put it in the right section.
thanks for help also, ill be happy with what i have but it seems it could be a possibility at some time.
technically it could be in this section because it could be developed but im no expert at doing so..>.<
but yeah thanks for the heads up.
i always visit the dream development because i always do tweakings to my phone and it was 1st instincts as soon as i loaded xda
any moderator able to transfer it to Q&A G1?
thanks for the answers xda's
I have a question but I'm to lazy to think or search.....ill make a new thread in dev section n mu question is Have u seen my brain?
Here are a couple of things to try, not sure if any or all will work or not.
1. Use Bettercut or Anycut, choose edit an existing, then for your first icon that you want to remove the name for, replace it with one space (hit the spacebar once). For the second one, replace the name with two spaces. For the third, three spaces. And so on. I'm almost positive this one will work.
2. If #1 doesn't work, I'm not sure whether or not the homescreen recognizes HTML code or not. If it does, instead of using spaces, type the following instead of a space. You'll need to do this for each space you are trying to type (and do not type the quotation marks): " "
3. If #1 and #2 don't work, then hold down ALT and press the spacebar once. That should create a ANSI space. You'll want to do that for each space you're wanting to create.
Since I believe each icon on the homescreen has to have a different name (Don't have my phone right now to test it), that's why you'll need a different number of spaces for each name. In other words, the 1st icon would need 1 space, the 2nd icon would need 2 spaces, the 3rd icon would need four spaces, etc. That may not be entirely necessary, but it won't hurt anything either.
Please let me know which, if any, of these tricks work.
Wish I could test this and give you the exact answer. But I believe the first example works. Grab Anycut off the Market and give it a try.
blueheeler said:
Here are a couple of things to try, not sure if any or all will work or not.
1. Use Bettercut or Anycut, choose edit an existing, then for your first icon that you want to remove the name for, replace it with one space (hit the spacebar once). For the second one, replace the name with two spaces. For the third, three spaces. And so on. I'm almost positive this one will work.
2. If #1 doesn't work, I'm not sure whether or not the homescreen recognizes HTML code or not. If it does, instead of using spaces, type the following instead of a space. You'll need to do this for each space you are trying to type (and do not type the quotation marks): " "
3. If #1 and #2 don't work, then hold down ALT and press the spacebar once. That should create a ANSI space. You'll want to do that for each space you're wanting to create.
Since I believe each icon on the homescreen has to have a different name (Don't have my phone right now to test it), that's why you'll need a different number of spaces for each name. In other words, the 1st icon would need 1 space, the 2nd icon would need 2 spaces, the 3rd icon would need four spaces, etc. That may not be entirely necessary, but it won't hurt anything either.
Please let me know which, if any, of these tricks work.
Wish I could test this and give you the exact answer. But I believe the first example works. Grab Anycut off the Market and give it a try.
Click to expand...
Click to collapse
+1. I was going to suggest the same thing.
blueheeler said:
Here are a couple of things to try, not sure if any or all will work or not.
1. Use Bettercut or Anycut, choose edit an existing, then for your first icon that you want to remove the name for, replace it with one space (hit the spacebar once). For the second one, replace the name with two spaces. For the third, three spaces. And so on. I'm almost positive this one will work.
2. If #1 doesn't work, I'm not sure whether or not the homescreen recognizes HTML code or not. If it does, instead of using spaces, type the following instead of a space. You'll need to do this for each space you are trying to type (and do not type the quotation marks): " "
3. If #1 and #2 don't work, then hold down ALT and press the spacebar once. That should create a ANSI space. You'll want to do that for each space you're wanting to create.
Since I believe each icon on the homescreen has to have a different name (Don't have my phone right now to test it), that's why you'll need a different number of spaces for each name. In other words, the 1st icon would need 1 space, the 2nd icon would need 2 spaces, the 3rd icon would need four spaces, etc. That may not be entirely necessary, but it won't hurt anything either.
Please let me know which, if any, of these tricks work.
Wish I could test this and give you the exact answer. But I believe the first example works. Grab Anycut off the Market and give it a try.
Click to expand...
Click to collapse
I used betterCut and I used one space for a shortcut. Well... It works if you don't mind that text background still there. So its not really great.

[SOFT] Find and Pull™ v1.0.2

Hey guys,
Here's my newest Windows program. You type in a search phrase, and through ADB, it will search your phone in the specified directories and then you can pull to the specified save locations on your computer.
Find and Pull™ v1.0.2
PREREQUISITES:
Android USB Drivers installed
ADB working and in PATH
USB Debugging Enabled
.NET 4.0
HOW TO USE:
1. Connect phone to computer via USB
2. Run FindandPull.exe
3. Go to File > Preferences
4. Choose a save location (use the file browser button)
5. Choose a search location (some common ones are in the drop down, but you can also type your own)
6. Press OK
7. Now type in whatever you want to search for:
-For example, if you want to find any files with the word 'speed' in it, type 'speed' without the quotes
-Also, you can use the wildcards * and ? in your search.
*Don't put them on the outer edges of your search text since I already did that.
8. Press the Find button
9. If it found any files, it will now list them in the checked list box.
10. Check whichever files you want to pull.
11. Press the Pull button.
12. Voila!
Changelog is in app.
Source: Find and Pull GitHub
If anyone has any suggestions, features, or ideas they would like implemented, as well as any bugs found, PLEASE let me know.
Frequently Asked Questions:
1. Will this work on my phone?
No, it won't. This is only for Windows.
2. The program doesn't want to open on my computer. What's wrong?
Most likely, you will need to update to the newest version of .NET framework. I'm using 4.0, so that could be the issue.
3. The device checker keeps saying that it can't find my device. PLEASE HELP ME!!!
Alright, I ended up having to help out with a lot of these problems with my Clock Switcher program. So the simplest solution I could think of was for the program to use ADB however you have it set up. Therefore, you must have ADB already working on your computer, as well as being in PATH.
4. So how do copy protected apps onto my computer?!?!?
Sorry, but out of respect for other developers I didn't list that location in the drop down. If you figure it out anyway, congrats lol.
Click to expand...
Click to collapse
Known Bugs:
None yet.
Please report any that you find
Click to expand...
Click to collapse
Yeah need 4.0+
http://www.microsoft.com/downloads/...51-5ff4-4491-b0e5-b386f32c0992&displaylang=en
EDIT: Works great. Only suggestion so far is to incorporate the target folders in the main search page if possible, rather than having to go to preferences. Not a big deal, though. I can definitely live with it as it stands. Thank you for this!
Re: Find and Pull™ v1.0
I posted link to 4.0 in OP thanks for that.. and thanks for the suggestion .. I'll mess around with it tomorrow
OK updated OP with new version.
Added a "search within results" feature and some bug fixes
Still need to implement some more features in my free time
Any suggestions are highly welcomed
Small update..
Added 2 new search options
1. you can now specify last modified dates
2. you can also specify either files or directories
*Bump* Thank you...working great!
overground said:
*Bump* Thank you...working great!
Click to expand...
Click to collapse
haha thanks man
Dude you rock !! These little programs you make come in handy big time, thanks for your hard work...I wish i could program like that
jgrimberg1979 said:
Dude you rock !! These little programs you make come in handy big time, thanks for your hard work...I wish i could program like that
Click to expand...
Click to collapse
Hey thanks man ... I've been meaning to get around to update this ... summer semester ends this week and I get a bit of a vacation before the next semester so I'll definitely work on it then
xidominicanoix said:
I've been meaning to get around to update this ... summer semester ends this week and I get a bit of a vacation before the next semester so I'll definitely work on it then
Click to expand...
Click to collapse
I know I promised to work on this, but I've been slacking and just relaxing on my little vacation from school but I really do promise to get back to this .. have some ideas just gotta get them done now

Has Anyone Seen/Used this? Theme Porter Script?!?

Looks like it may make it pretty easy to port themes from any other phone with the same resolution as ours. I just stumbled on this tonight. I am on a Mac and don't have Windows running on my machine, and I'm not sure if they got a Linux version up and running. I have to get back to work so I don't have time to read into it or mess with it. I just wanted to post a link to it so you guys could check it out. Please post any results that you have with this and be sure to thank OP who created the script!
http://forum.xda-developers.com/showthread.php?t=737526
I'm very curious to this as well, anyone? I've never worked with adb
It works very well at dragging over the png files for you from one apk file to another. It doesn't get any of the xml or smali stuff that you need to go with it, though. It's got it's place, and I use it when I'm still being lazy to move stuff myself, but I'm finding things like Beyond Compare to be more useful in comparing what is in one file to another. This way you can trash what you don't need and then drag everything else over yourself.
Apktool and apk manager are two other tools that I use in theming to decompile the apk's so you can get in them and do your work and the it recompiles them for you and lets you know if there is a problem.
I've got more info, and when I have more time I can drop it on here. Also, I know that nitsuj17 just started a thread in the Fascinate forum somewhere that is going to have all of the info he has on theming. Most of what I have came from him. I've just had to make changes because of the differences between the two phones.

Perma set user agent to Desktop in default browser (rooted)

I read that this can be done on rooted xooms in another thread but the search function doesnt appear to be working right this minute. Any pointers?
help?
1. The message you have entered is too short. Please lengthen your message to at least 10 characters.
This requires modifying the framework-res.apk file, a process that isn't exactly straight forward right now.
So unless you can convince the guy in the other thread to post a patch that only does the Desktop User Agent fix, you are going to have to wait a bit.
lame. I cant find the other thread anymore, thats why i made this one. I dont even know what the title was -_-
http://forum.xda-developers.com/showthread.php?t=1015857
Download the framework-res-uastring.apk
nindoja said:
http://forum.xda-developers.com/showthread.php?t=1015857
Download the framework-res-uastring.apk
Click to expand...
Click to collapse
But won't we lose the BigDX theme if we save that framework-res.apk ... that is the same file that he used in making the red and be themes.

[APP][TASKER] MyNotes v1.0

MyNotes​
Post #1: App introduction, download link, credits, screenshots attached.
Post #2: FAQ / other info.
Hello!
I've spent last days in making an app for taking notes. Initially, I wanted to make a shopping list, but then I decided to make an app which allow me to take notes because there are moments when I need to take a quick note. I can't upload it to Google Play because I don't have my own money ( and I'm almost 21 already... ).
I'm still a Tasker newbie
FEATURES:
☆ Possibility to save the current text from text field to a .txt file in a folder named MyNotes, along with the date and the clock when the text was saved. You can save text to same .txt file as much as you want.
☆ Enable a shake option to launch MyNotes.
☆ Enable a persistent notification, which after is touched will run MyNotes.
☆ No ads
That's all the features. I've wanted to add a color picker too for changing the theme, but it went troublesome for me and also then I didn't think themes are that useful for an app like this.
DOWNLOAD: https://www.mediafire.com/download/3dggq5uhdyugd33
CREDITS:
- Tasker and it's developer
- reddit forum (big thanks to Ratchet_Guy)
- google tasker forum
- me
NOTE: This app was created on my phone, a Samsung Galaxy J5, with a 5.0", 720x1280 resolution screen. It might look weird on other resolutions.
FAQ / other info
1. Who are you?
I'm Robert (Force @xda). I've created this app using Tasker because there are moments when i need to write a quick note and read it later. I'm sure that there are apps much better than this, but i wanted one made with Tasker. I'm addicted to Tasker, but i still noob
2) Why are required network permissions?
Tasker added the permissions automatically according to app actions/features. I've added a button named "XDA thread" which open the xda thread. The button purpose is for writing bugs/reviews/suggestions. There is also a "SHARE" button to contact me through email.
I can remove these 2 buttons if you are concerned. I can also share the xml project.
3) Long press the buttons to see what it does.
4) I would like to know your review, your suggestions and also let me know if you found any bug.
5) The .txt file get saved in the folder named MyNotes in your phone internal memory (most likely /sdcard/ or /sdcard0/).
6. The "X" icon or phone back button minimize the app, so it saves the current text in textfield.
I'm waiting your opinion / review / suggestion
Thank you!
May I have your project file?
maurizio53 said:
May I have your project file?
Click to expand...
Click to collapse
Sure. I've attached it to this post. It isn't that clean, for example the main scene is called SHOPPING because initially I wanted to make a shopping list. I didn't rename since I've exported it as app.
Let me know if you have any questions regarding the project file, or if you think I can make "the code" cleaner.
Also, if you wanna make your app or something and wanna share it, I would like to give credits to me if you are using scene, only if you mind. because I've spent few days working on
Please let me know your opinion about this app, good or bad review doesn't matter, but I want an honest review
Thank you!
Force said:
Sure. I've attached it to this post. It isn't that clean, for example the main scene is called SHOPPING because initially I wanted to make a shopping list. I didn't rename since I've exported it as app.
Let me know if you have any questions regarding the project file, or if you think I can make "the code" cleaner.
Also, if you wanna make your app or something and wanna share it, I would like to give credits to me if you are using scene, only if you mind. because I've spent few days working on
Please let me know your opinion about this app, good or bad review doesn't matter, but I want an honest review
Thank you!
Click to expand...
Click to collapse
Thanks... I'll let u know if all is OK
Force said:
Sure. I've attached it to this post. It isn't that clean, for example the main scene is called SHOPPING because initially I wanted to make a shopping list. I didn't rename since I've exported it as app.
Let me know if you have any questions regarding the project file, or if you think I can make "the code" cleaner.
Also, if you wanna make your app or something and wanna share it, I would like to give credits to me if you are using scene, only if you mind. because I've spent few days working on
Please let me know your opinion about this app, good or bad review doesn't matter, but I want an honest review
Thank you!
Click to expand...
Click to collapse
I own a Samsung Note 3 so I am asking if could be possible to use the S pen with this project...
It seems nice but you can improve your design
maurizio53 said:
I own a Samsung Note 3 so I am asking if could be possible to use the S pen with this project...
Click to expand...
Click to collapse
It seems that is possible. Check that link. What kind of trigger you want?
By the way, LMT launcher helps in launching apps faster too.
cheetatech said:
It seems nice but you can improve your design
Click to expand...
Click to collapse
Thank you for your reply!
At begin it looked even worse I think I'll try to design it with GIMP maybe.
Thanks.. but as you can imagine I am really noob with tasker so also with this app I really don't know where to begin to use S pen with your project... what I would like is the features to open your project when spen is removed and use the pen to write inside your notes...
Really difficult for you?
maurizio53 said:
Thanks.. but as you can imagine I am really noob with tasker so also with this app I really don't know where to begin to use S pen with your project... what I would like is the features to open your project when spen is removed and use the pen to write inside your notes...
Really difficult for you?
Click to expand...
Click to collapse
As far as I can see on internet, you need a plugin to do that. It can't be done alone with Tasker.
This is what you need: Note Buddy (S Pen Helper) . It does what you're looking for, and you don't have to use it with Tasker.
Please check it.

Categories

Resources