[Q&A] App with HTML page Inside, template? - Web App Development

Hi at all,
i have a APP that launch inside a web in html, my questin is:
can I develop a Theme in HTML?
what program do you recommend ?
the app is: https://play.google.com/store/apps/details?id=com.sardegna.isolameteo

you can develop a theme in css and changing css changes the theme of your html page

jaison thomas said:
you can develop a theme in css and changing css changes the theme of your html page
Click to expand...
Click to collapse
Can you suggest some particular software?

see this link , its theme builder for jquery mobile
http://themeroller.jquerymobile.com/

jaison thomas said:
see this link , its theme builder for jquery mobile
http://themeroller.jquerymobile.com/
Click to expand...
Click to collapse
WOOOOW!!!!! Thank you... amazing !!!!!

check http://onsen.io/ and http://ionicframework.com/

Thank You!!!!

Related

Rom Kitchen Themes

(Kitchen theme templates)
For all of you great themers.
Please create your themes for the kitchen using the following links
Todays special: XXJVK theme template http://www.multiupload.com/38UJ7ERO7L
Thank You
Rom_Kitchen profile is a collaboration of DocRambone, Stefunel and Tricky103.
ok, downloading
edit: systemui.apk needed
Ok the framework zip is updated
uploading lucid, btw cant test it yet for obvious reasons
EDit : http://www.multiupload.com/0QP4WBG0TW
first jvk theme, i feeel goood
Rom_Kitchen said:
Ok the framework zip is updated
Click to expand...
Click to collapse
downloaded, so it's still tw4 ?
all files from framework-res.apk are from 10-06-2009 ??
I can make an optimus 2x kinda like theme if you want
I think it's a FAKE!
Things are shared
Whats fake?
Sent from my GT-I9000 using XDA Premium App
Brotuck said:
downloaded, so it's still tw4 ?
all files from framework-res.apk are from 10-06-2009 ??
Click to expand...
Click to collapse
coldflid said:
I can make an optimus 2x kinda like theme if you want
Click to expand...
Click to collapse
It is strange that only responds to one of the comments that say he is a fake and the other not.
Believed that Android is free
too strange to me
Lorse said:
It is strange that only responds to one of the comments that say he is a fake and the other not.
Believed that Android is free
too strange to me
Click to expand...
Click to collapse
+1 agreed with that lorse! we'll see.....raro..raro..!!
Thanks for this, very useful.
Just enabled screen off animation in JVK
downloading now
Have a pretty good version of lucid ready
Sent from my GT-I9000 using XDA Premium App
Usually are on Whirlpool but hey though I would use this awesome site.
Hey are themes for rom kitchen's ZSJPJ v10 are we still only on stock theme or is their options now?
I am not able to find a yes / no answer except for what is on the rom kitchen site
you can only choose the stock theme in kitchen, but afterwards you may flash another theme over that.
Ok I got one from you. Lucid. Love it. But getting force close android.process. media. Otherwise it's fine.
Sent from my GT-I9000 using XDA Premium App

Change Font Colour

Is there an easy way to change font colours easily? I use iFont to change font styles but really want to change font colour so it will work well with bright colour wallpaper.
No as each apk sets the don't color staticly so you would have to edit all the base files and every apk
Wayne Tech Nexus
zelendel said:
No as each apk sets the don't color staticly so you would have to edit all the base files and every apk
Wayne Tech Nexus
Click to expand...
Click to collapse
Would it be possible to just edit the font colour on the homescreen and drawer or is that not possible?
If you can decompile find the hex codes and replace them with ones of your choice then I suppose yes.
Sent from my SGH-I747 using Tapatalk 2
rani9990 said:
If you can decompile find the hex codes and replace them with ones of your choice then I suppose yes.
Sent from my SGH-I747 using Tapatalk 2
Click to expand...
Click to collapse
do I have to do this if I want the text under the app to be a different colour?
kirbymaster101 said:
do I have to do this if I want the text under the app to be a different colour?
Click to expand...
Click to collapse
am pretty sure there is an app in the Play Store that can do that for you or dig up some threads and may find an apk that does all that for yu
winosxbuntu said:
am pretty sure there is an app in the Play Store that can do that for you or dig up some threads and may find an apk that does all that for yu
Click to expand...
Click to collapse
okay i tried following this guide but cant find the values/colour.xml file. any help plz
http://androidforums.com/esteem-all-things-root/527865-guide-change-your-font-color.html
kirbymaster101 said:
okay i tried following this guide but cant find the values/colour.xml file. any help plz
http://androidforums.com/esteem-all-things-root/527865-guide-change-your-font-color.html
Click to expand...
Click to collapse
Use the guide in the stickies in the theme section. Also make sure you have all the proper frameworks installed.
Wayne Tech Nexus
zelendel said:
Use the guide in the stickies in the theme section. Also make sure you have all the proper frameworks installed.
Wayne Tech Nexus
Click to expand...
Click to collapse
uhh here http://forum.xda-developers.com/forumdisplay.php?f=1721 or here http://forum.xda-developers.com/forumdisplay.php?f=527
Also whats the title of the topic?
kirbymaster101 said:
uhh here http://forum.xda-developers.com/forumdisplay.php?f=1721 or here http://forum.xda-developers.com/forumdisplay.php?f=527
Also whats the title of the topic?
Click to expand...
Click to collapse
I would start here. [GUIDE] Want to learn how to theme?

[TUT] How to theme apps in black & white ! |Noob friendly|

Hi folks
I’m learning and keep learning how to theme , so here is what i learned about theming in Black , if this guide helped you please press Thanks Button .
Lets start , you need Notepad ++ , PC and apktool package .
Download : http://d-h.st/gxg
You need to know how to decompile and compile !! before starting .
Method 1​
Editing res/values/styles.xml .
Example : <style name="SEMCNotesTheme" parent="@*android:style/Theme.DeviceDefault.Light">
This is Main theme for app ! so by Editing it you will change the theme for full app
This one , to make it black just remove .Light in the end , if you want it from black to white add .Light in the end ,
After editing : <style name="SEMCNotesTheme" parent="@*android:style/Theme.DeviceDefault">
-------------------
Method 2​
Editing AndroidManifest.xml
Thats why we dont see any "theme text" in styles.xml ,
Example in backup & restore app
<activity android:theme="@*android:style/Theme.DeviceDefault.Light" android:label="@string/backup_wizard_app_name_txt" android:name=".ui.phone.PhoneMainActivity"
First of all you need to know what this "android:theme" for ?
in the line up there we see "android:name" = PhoneMainActivity so its for Main theme
And this " android:name=".ui.tablet.TabletMainActivity" " for Tablet Mode or Tablet , So its like Main theme
Remove Light for black theme , or add .Light for white theme
Example for black theme : <activity android:theme="@*android:style/Theme.DeviceDefault"
Example for white theme :<activity android:theme="@*android:style/Theme.DeviceDefault.Light"
-----------------------------------------
Method 3​
Editing Smali.files ,
Loading , as i said i’m learning
Note : You may use Method 1 & 2 in same app
Extra : How to edit Settings background - http://forum.xda-developers.com/showthread.php?t=2443226 by @funky0308
IF you have any question please write it
IF you like the Guide please press thanks and write if you tried to theme by following this guide .
Bravo abo ,nice tutorial..
abo hani said:
Hi folks
I’m learning and keep learning how to theme , so here is what i learned about theming in Black , if this guide helped you please press Thanks Button .
Lets start , you need Notepad ++ , PC and apktool package .
Download : http://d-h.st/gxg
You need to know how to decompile and compile !! before starting .
Method 1​
Editing res/values/styles.xml .
Example : <style name="SEMCNotesTheme" parent="@*android:style/Theme.DeviceDefault.Light">
This is Main theme for app ! so by Editing it you will change the theme for full app
This one , to make it black just remove .Light in the end , if you want it from black to white add .Light in the end ,
After editing : <style name="SEMCNotesTheme" parent="@*android:style/Theme.DeviceDefault">
-------------------
Method 2​
Editing AndroidManifest.xml
Thats why we dont see any "theme text" in styles.xml ,
Example in backup & restore app
<activity android:theme="@*android:style/Theme.DeviceDefault.Light" android:label="@string/backup_wizard_app_name_txt" android:name=".ui.phone.PhoneMainActivity"
First of all you need to know what this "android:theme" for ?
in the line up there we see "android:name" = PhoneMainActivity so its for Main theme
And this " android:name=".ui.tablet.TabletMainActivity" " for Tablet Mode or Tablet , So its like Main theme
Remove Light for black theme , or add .Light for white theme
Example for black theme : <activity android:theme="@*android:style/Theme.DeviceDefault"
Example for white theme :<activity android:theme="@*android:style/Theme.DeviceDefault.Light"
-----------------------------------------
Method 3​
Editing Smali.files ,
Loading , as i said i’m learning
Note : You may use Method 1 & 2 in same app
IF you have any question please write it
IF you like the Guide please press thanks and write if you tried to theme by following this guide .
Click to expand...
Click to collapse
Hey make white verson of latest honami media app...thank you
Sent from my LT28i using XDA Premium 4 mobile app
Nitesh Shrestha said:
Hey make white verson of latest honami media app...thank you
Sent from my LT28i using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Man, this was extremely rude.
First of all, don't quote whole OP.
Second - this is tutorial thread, not thread for wishes.
Sent from my LT26i using Tapatalk 4
Nice tutorial :good:
But you may want to add once you change the theme from black to white or vice verse, you should change the text color.
how about if i want to make the theme apps transparent? is it possible? haha. i want to learn how to make it
edit: i made it already! hahah.
Great work abo hani.. Cheers..
slink722 said:
how about if i want to make the theme apps transparent? is it possible? haha. i want to learn how to make it
edit: i made it already! hahah.
Click to expand...
Click to collapse
If i know it will be posted here
slink722 said:
how about if i want to make the theme apps transparent? is it possible? haha. i want to learn how to make it
edit: i made it already! hahah.
Click to expand...
Click to collapse
It ia possible, just edit the framework and will be done
Sent from my C6603 using Tapatalk 4
jimRnor said:
It ia possible, just edit the framework and will be done
Sent from my C6603 using Tapatalk 4
Click to expand...
Click to collapse
can you send me a tutorial for that? please hahah
---------- Post added at 10:34 AM ---------- Previous post was at 10:31 AM ----------
abo hani said:
If i know it will be posted here
Click to expand...
Click to collapse
haha. so lets just ask @jimRnor how to do it if she want and share it to everybody. :highfive:
Extra guide added thank you @funky0308
abo hani said:
Extra guide added thank you @funky0308
Click to expand...
Click to collapse
What did I do mate?
I'm glad if I helped but can't recall what have I done.
Sent from my LT26i using Tapatalk 4
funky0308 said:
What did I do mate?
I'm glad if I helped but can't recall what have I done.
Sent from my LT26i using Tapatalk 4
Click to expand...
Click to collapse
Without your help , this guide wont be posted
abo hani said:
Without your help , this guide wont be posted
Click to expand...
Click to collapse
Haha...yeah, I'm the best
I think you'll find a way.
But I'm 100% with everyone who wanna share knowledge with others.
Maybe when we see thread "how to change fonts" or similar though it's ridiculous but for someone who is new in this world that helps a lot.
So who ever know something - share that knowledge and we'll have great new themers and developers.
Sent from my LT26i using Tapatalk 4
@abo hani
you may want to hit the diasable smilies button below when in advanced editing (for this thread of course)
Sent from my LT26i using XDA Premium 4 mobile app
Envious_Data said:
@abo hani
you may want to hit the diasable smilies button below when in advanced editing (for this thread of course)
Sent from my LT26i using XDA Premium 4 mobile app
Click to expand...
Click to collapse
(Y) :good:
TitaniumZERO said:
Nice tutorial :good:
But you may want to add once you change the theme from black to white or vice verse, you should change the text color.
Click to expand...
Click to collapse
For this , i didnt know if the texts color in smali files :/
because i had black text in settings/apps , from my friend funky
and tried to fix it but no luck
To theme app in blue,traslucent etc...
What is the code?
Sent from my LT26i using xda premium
xperiasblack said:
To theme app in blue,traslucent etc...
What is the code?
Sent from my LT26i using xda premium
Click to expand...
Click to collapse
Open colors.xml and check which colours are defined.
I think I post a link to thread with hex codes for colors on my thread (theming) but I'll check amd if I have it I'll post here.
Sent from my LT26i using Tapatalk 4
Can anyone themate the Huawei player in black?
http://forum.xda-developers.com/showthread.php?t=2465531

New IOS 7 Theme from vmall

I found this theme on CN.VMALL. For me it's brand new. Looks nice.
Edit.: i upload it for a faster download! https://mega.co.nz/#!B1pz3CIJ!F9DVv3TSkZzt3qgIs_UMsh0GPLQ5-ItYaKPfOrwzb9k
See for yourself!
Close this post....the autor share the theme here.
«@»
neodante said:
Close this post....the autor share the theme here.
«@»
Click to expand...
Click to collapse
How can i delete this.?
benjaminbodoky said:
How can i delete this.?
Click to expand...
Click to collapse
Report the post to any admin of forum...
«@»
The original author of that theme is actually a Chinese user on the vmall forum. I have posted it on the "How do i get this theme?" thread.
ModdenHROM than worked over that and added his own changes.
I will, when i get back home then.
BB

[THEME][MM & NOUGAT] Planets

Sharing the theme I created for MM & Nougat devices called Planets.?
https://www.dropbox.com/s/okevm9rom63rxjr/Planets.apk?dl=0
Not for mm?
Xperia M4 aqua
Check OP for the updated download link. Thanks!☺
ictsz.roy said:
Not for mm?
Click to expand...
Click to collapse
For MM and Nougat.? Updated the link in OP.?
good job man
olibub said:
good job man
Click to expand...
Click to collapse
Thanks!...?
Theme updated. Kindly check OP for the download link.
This is sooo colorful! I love it! I hope to see more themes from you Great job
panzerox123 said:
This is sooo colorful! I love it! I hope to see more themes from you Great job
Click to expand...
Click to collapse
Good to hear that you liked it. I'll try to create more themes like that and I'll try to be creative as I can be.
ermond012 said:
Good to hear that you liked it. I'll try to create more themes like that and I'll try to be creative as I can be.
Click to expand...
Click to collapse
Hehe... No pressure just one question... Do you use the Sony theme creator or android studio? I mean, there are some themes that change the look of the status bar icons... I don't know how they managed to do it.
panzerox123 said:
Hehe... No pressure just one question... Do you use the Sony theme creator or android studio? I mean, there are some themes that change the look of the status bar icons... I don't know how they managed to do it.
Click to expand...
Click to collapse
I only use the Sony Theme Creator. I haven't tried yet the Android Studio. But yeah they say it's more complex and you can do a lot more with Android Studio.?
ermond012 said:
I only use the Sony Theme Creator. I haven't tried yet the Android Studio. But yeah they say it's more complex and you can do a lot more with Android Studio.?
Click to expand...
Click to collapse
Thanks

Categories

Resources