Hello everyone
This is question for developers
I found today this thread [Guide]4.2.2 Statusbar For Jellybean 4.1.2 Roms [COOL][JB]
and my question is can you add this to sense rom?
Kris Groove said:
Hello everyone
This is question for developers
I found today this thread [Guide]4.2.2 Statusbar For Jellybean 4.1.2 Roms [COOL][JB]
and my question is can you add this to sense rom?
Click to expand...
Click to collapse
Will this add the quick settings too?
I ported it successfully some time ago but the statusbar expanded layout looked distorted, but smali part was done.
If I have time maybe I will port it and you can play with layout xmls and fix it.
xpirt
xpirt said:
I ported it successfully some time ago but the statusbar expanded layout looked distorted, but smali part was done.
If I have time maybe I will port it and you can play with layout xmls and fix it.
xpirt
Click to expand...
Click to collapse
That's the easiest one
InfinityShooter said:
That's the easiest one
Click to expand...
Click to collapse
Ok I will re-port tomorrow and I leave you to fix the layout part, but it's not so easy as there are htc parts and you will need to create custom relativelayouts,etc
xpirt
xpirt said:
Ok I will re-port tomorrow and I leave you to fix the layout part, but it's not so easy as there are htc parts and you will need to create custom relativelayouts,etc
xpirt
Click to expand...
Click to collapse
I am also confused with the layouts..
InfinityShooter said:
I am also confused with the layouts..
Click to expand...
Click to collapse
Look here: http://developer.android.com/guide/topics/ui/declaring-layout.html
It will be usefull.
xpirt
I can help with layout becouse I start writing apps for android
But I need screens or sources to look how it look now.
Kris Groove said:
I can help with layout becouse I start writing apps for android
But I need screens or sources to look how it look now.
Click to expand...
Click to collapse
I will port it tomorrow and make also a screen how it looks. Then you should decompile and look into layouts.
xpirt
Related
Hello all!
As you maybe seen, Android 4.4 (KitKat) has awesome color emoji.
I looked into the sources, and I think I managed to found what does make emoji in color :
--system
------- fonts
--------- AndroidEmoji.ttf
--------- NotoColorEmoji.tff
-- etc
--------- fallback_fonts.xml
--------- system_fonts.xml
In framework-res.apk, it as some png of some simple emoji.
EDIT :
I found something else in my insvestigations.
In CM11 and KitKat source code, it has a folder emoji inside "framework/opt/".
In emoji folder, it has
- Android.mk
- CleanSpec.mk
- EmojiFactory.cpp
- EmojiFactory.h
And i'm sure EmojiFactory has something to do with colored emoji.
Like these comments line say :
// Returns binary image data corresponding to "pua". The size of binary is
// stored to "size". Returns NULL if there's no mapping from the "pua" to a
// specific image. Currently, image format is all (animated) gif.
Click to expand...
Click to collapse
In "frameworks/base/core/java/android" it has an emoji folder, with EmojiFactory.java file, which call libemoji.so.
EDIT 2 :
They talk about emoji here :
External
/home/loic/cm11/external/chromium_org/third_party/WebKit/Source/core/rendering/RenderText.cpp
/home/loic/cm11/external/chromium_org/third_party/skia/gyp/freetype.gyp
/home/loic/cm11/external/skia/gyp/freetype.gyp
/home/loic/cm11/external/linux-tools-perf/Documentation/maps
/home/loic/cm11/external/icu4c/.git/index
/home/loic/cm11/external/icu4c/data/mappings/softbank-shift_jis-2012.ucm
/home/loic/cm11/external/icu4c/data/mappings/kddi-jisx-208-2007.ucm
/home/loic/cm11/external/icu4c/data/mappings/README.emoji
/home/loic/cm11/external/icu4c/data/mappings/docomo-shift_jis-2012.ucm
/home/loic/cm11/external/icu4c/data/mappings/softbank-jisx-208-2007.ucm
/home/loic/cm11/external/icu4c/data/mappings/kddi-shift_jis-2012.ucm
Out
/home/loic/cm11/out/target/common/obj/APPS/Mms_intermediates/public_resources.xml
/home/loic/cm11/out/target/common/obj/APPS/Mms_intermediates/src/R.stamp
/home/loic/cm11/out/target/common/obj/APPS/Mms_intermediates/src/com/android/mms/R.java
/home/loic/cm11/out/target/common/obj/APPS/Mms_intermediates/src/com/android/ex/chips/R.java
/home/loic/cm11/out/target/common/obj/APPS/LatinIME_intermediates/public_resources.xml
/home/loic/cm11/out/target/common/obj/APPS/LatinIME_intermediates/src/R.stamp
/home/loic/cm11/out/target/common/obj/APPS/LatinIME_intermediates/src/com/android/inputmethod/latin/R.java
/home/loic/cm11/out/target/common/obj/APPS/LatinIME_intermediates/proguard_options
/home/loic/cm11/out/target/common/R/com/android/mms/R.java
/home/loic/cm11/out/target/common/R/com/android/inputmethod/latin/R.java
/home/loic/cm11/out/target/common/R/com/android/ex/chips/R.java
Test
/home/loic/cm11/cts/tests/tests/text/src/android/text/cts/EmojiConstants.java
/home/loic/cm11/cts/tests/tests/text/src/android/text/cts/StaticLayoutLineBreakingTest.java
/home/loic/cm11/cts/tests/tests/text/src/android/text/cts/EmojiTest.java
Android
/home/loic/cm11/android/default.xml
Framework
/home/loic/cm11/frameworks/base/preloaded-classes
/home/loic/cm11/frameworks/base/core/jni/android_emoji_EmojiFactory.cpp
/home/loic/cm11/frameworks/base/core/jni/Android.mk
/home/loic/cm11/frameworks/base/core/jni/AndroidRuntime.cpp
/home/loic/cm11/frameworks/base/core/java/android/text/Layout.java
/home/loic/cm11/frameworks/base/core/java/android/text/StaticLayout.java
/home/loic/cm11/frameworks/base/core/java/android/text/TextLine.java
/home/loic/cm11/frameworks/base/core/java/android/emoji/EmojiFactory.java
/home/loic/cm11/frameworks/base/core/java/android/view/inputmethod/InputConnection.java
/home/loic/cm11/frameworks/base/tests/StatusBar/src/com/android/statusbartest/NotificationBuilderTest.java
/home/loic/cm11/frameworks/base/tests/StatusBar/res/layout/notification_builder_test.xml
/home/loic/cm11/frameworks/base/tools/preload/20100223.compiled
/home/loic/cm11/frameworks/base/tools/preload/20090811.compiled
/home/loic/cm11/frameworks/base/.git/index
/home/loic/cm11/frameworks/opt/emoji/Android.mk
/home/loic/cm11/frameworks/opt/emoji/EmojiFactory.cpp
/home/loic/cm11/frameworks/opt/emoji/EmojiFactory.h
/home/loic/cm11/frameworks/opt/timezonepicker/src/com/android/timezonepicker/TimeZonePickerUtils.java
.repo
/home/loic/cm11/.repo/projects/frameworks/opt/emoji.git/config
/home/loic/cm11/.repo/projects/frameworks/opt/emoji.git/.repopickle_config
/home/loic/cm11/.repo/projects/frameworks/opt/emoji.git/FETCH_HEAD
/home/loic/cm11/.repo/projects/frameworks/base.git/objects/pack/pack-822265727f5bd79fd7574e8251fd9cff98559d8b.pack
/home/loic/cm11/.repo/projects/packages/inputmethods/LatinIME.git/objects/pack/pack-f75f41c8589b316ac7313a2f533b3d37aa9072ba.pack
/home/loic/cm11/.repo/project.list
/home/loic/cm11/.repo/manifests/default.xml
/home/loic/cm11/.repo/.repopickle_fetchtimes
Vendor
/home/loic/cm11/vendor/cm/config/common.mk
Packages
/home/loic/cm11/packages/apps/Mms/.git/index
/home/loic/cm11/packages/apps/Mms/res/values-el/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-hu/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-iw/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-cs/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-nb/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-hr/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-da/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-nl/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-fr/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-zh-rCN/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-ru/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-ug/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-fi/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-pl/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-it/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-ca/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-zh-rTW/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-es/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-uk/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-af/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-pt/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-de/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values/cm_arrays.xml
/home/loic/cm11/packages/apps/Mms/res/values/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-sv/cm_strings.xml
/home/loic/cm11/packages/apps/Mms/res/values-sk/cm_strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/InputLogicTests.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/KeyboardId.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/EmojiPalettesView.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/KeyboardState.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/KeyboardTextsSet.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/KeyboardIconsSet.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/KeyboardCodesSet.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/EmojiCategoryPageIndicatorView.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/EmojiLayoutParams.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/Constants.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/LatinIME.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/SubtypeSwitcher.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/Settings.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/SubtypeLocaleUtils.java
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-et-rEE/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-v19/emoji-categories.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-ka-rGE/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-sl/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-vi/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-rm/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-zh-rHK/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-el/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-fa/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-pt-rPT/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-hu/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-iw/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-sw540dp/dimens.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-en-rGB/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-cs/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-ar/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-hy-rAM/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-nb/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-zu/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-ja/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-hi/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-ro/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-hr/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-ko/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-da/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-nl/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-th/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-tl/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-en-rIN/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml-sw600dp/key_styles_common.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-v18/emoji-categories.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-fr/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-zh-rCN/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-lv/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-ru/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-bg/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-sr/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/drawable/ic_emoji_objects_light.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/drawable/ic_emoji_nature_light.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/drawable/ic_emoji_places_light.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/drawable/ic_emoji_people_light.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/drawable/ic_emoji_recent_light.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/drawable/ic_emoji_symbols_light.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-fi/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-pl/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-it/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-am/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-be/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-es-rUS/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-land/dimens.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-ca/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-zh-rTW/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-es/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-fr-rCA/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-sw540dp-land/dimens.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-in/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-tr/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-uk/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-km-rKH/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-af/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/layout/input_view.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/layout/emoji_keyboard_page.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/layout/emoji_palettes_view.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-sw768dp-land/dimens.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-lo-rLA/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-pt/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-sw/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-ms-rMY/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-de/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/kbd_emoji_category1.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/method.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/kbd_emoji_category4.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/row_pcqwerty5.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/kbd_emoji_category6.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/kbd_emoji_recents.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/key_styles_enter.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/key_styles_common.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/keyboard_layout_set_emoji.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/key_f2.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/kbd_emoji_category5.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/kbd_emoji_category3.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/xml/kbd_emoji_category2.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values/themes-common.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values/colors.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values/attrs.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values/dimens.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values/emoji-categories.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values/themes-gb.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values/themes-ics.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-lt/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-mn-rMN/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-sv/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-sw768dp/dimens.xml
/home/loic/cm11/packages/inputmethods/LatinIME/java/res/values-sk/strings.xml
/home/loic/cm11/packages/inputmethods/LatinIME/tools/make-keyboard-text/res/values/donottranslate-more-keys.xml
/home/loic/cm11/packages/inputmethods/LatinIME/.git/index
/home/loic/cm11/packages/inputmethods/LatinIME/dictionaries/en_emoji.combined.gz
/home/loic/cm11/packages/inputmethods/LatinIME/dictionaries/fr_emoji.combined.gz
/home/loic/cm11/packages/inputmethods/OpenWnn/.git/index
/home/loic/cm11/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/TextCandidatesViewManager.java
/home/loic/cm11/packages/inputmethods/OpenWnn/res/values-land/dimens.xml
/home/loic/cm11/packages/inputmethods/OpenWnn/res/values-sw768dp-land/dimens.xml
/home/loic/cm11/packages/inputmethods/OpenWnn/res/values/dimens.xml
Please help me to search !
You have erased your old emoji font or your phone doesn't read the new files, all you have to do is restore the old files
use
use all knew Google keyboard (Google it)
Do you have Skype ??
Lo-P said:
Hello all!
As you maybe seen, Android 4.4 (KitKat) has awesome color emoji.
I looked into the sources, and I think I managed to found what does make emoji in color :
--system
------- fonts
--------- AndroidEmoji.ttf
--------- NotoColorEmoji.tff
-- etc
--------- fallback_fonts.xml
--------- system_fonts.xml
In framework-res.apk, it as some png of some simple emoji.
Anyway, I made a flashable zip with these files and fonts, and I don't see any emoji, even in white in black.
So, could someone help me to find what's wrong?
Click to expand...
Click to collapse
Disputed said:
You have erased your old emoji font or your phone doesn't read the new files, all you have to do is restore the old files
Click to expand...
Click to collapse
gohel.vishal said:
use all knew Google keyboard (Google it)
Click to expand...
Click to collapse
My post is old from 1 Novemer. Since, CM 11 is out, and I have KitKat.
MRL3GS said:
Do you have Skype ??
Click to expand...
Click to collapse
Yes why?
Lo-P said:
My post is old from 1 Novemer. Since, CM 11 is out, and I have KitKat.
Yes why?
Click to expand...
Click to collapse
Might know a way to do it add me MRL3GS
MRL3GS said:
Might know a way to do it add me MRL3GS
Click to expand...
Click to collapse
Sorry my Skype it's for private use~
Share your method with us?
I'm 80% sure I found the trick for enable color emoji in any Android rom. All you need is source code.
Just have to check if my method work, and I give you
Lo-P said:
Sorry my Skype it's for private use~
Share your method with us?
Click to expand...
Click to collapse
i was going to say to make the emojs in colour you need to modify/murg the framwork files. But if you are can make an xposed module it will be a breeze
Lo-P said:
I'm 80% sure I found the trick for enable color emoji in any Android rom. All you need is source code.
Just have to check if my method work, and I give you
Click to expand...
Click to collapse
Really???? How did you get on mate???
MRL3GS said:
i was going to say to make the emojs in colour you need to modify/murg the framwork files. But if you are can make an xposed module it will be a breeze
Click to expand...
Click to collapse
I'm not enough skilled for make one
MRL3GS said:
Really???? How did you get on mate???
Click to expand...
Click to collapse
Check my EDIT 2 on my post! I founded something like EmojiFactory, and so one inside framework. Anyway, I have to check how it work and which files I have to change... Please, a skilled dev can search with us and make an xposed module? I would be awesome!
Got an idea. Have to extract maybe KitKat already build framework and check for Emoji...
Hoping to see this solved and ported to an xposed framework!
tramane said:
Hoping to see this solved and ported to an xposed framework!
Click to expand...
Click to collapse
I hope too. But I guess dev or members who are in 4.4 doesn't care about Emoji in old version, I understand them.
For me, I would love to enable it in Android version coz I have a rom which is in 4.2.2 and I'd love to use with Emoji, in color.
But for the moment, I'm not even enough skilled for build a rom, it always crash... :crying:
I hope someone gets an answer soon, cause I want KK emoji in my JB ROM
hussam91 said:
I hope someone gets an answer soon, cause I want KK emoji in my JB ROM
Click to expand...
Click to collapse
Nobody look like to care
Sent from my GT-I9305 using XDA Premium 4 mobile app
Any Dev think they could give this a go
I hope some developers make appropriate modifications.
WAITINGG!!!
josue276 said:
WAITINGG!!!
Click to expand...
Click to collapse
Yeah you can. For the moment we're alone.
Sent from my GT-I9305 using XDA Premium 4 mobile app
This would be awesome
You should try with KK Keyboard on Play Store, is the stock Kit Kat with colored emoji. https://play.google.com/store/apps/details?id=com.kitkatandroid.keyboard&hl=es_419
Hey there,
Is there any way to customise lockscreen? the right that we hav to pull up to unlock our phone... I want it the way we can customise sense clock..
if any one could hep me out that would be great! :laugh:
Look here: http://forum.xda-developers.com/showthread.php?t=1473293
You will find the tutorial that should work on DX too.
xpirt
xpirt said:
Look here: http://forum.xda-developers.com/showthread.php?t=1473293
You will find the tutorial that should work on DX too.
xpirt
Click to expand...
Click to collapse
Where can I find developed lock rings for sense 4+?
gagangera said:
Where can I find developed lock rings for sense 4+?
Click to expand...
Click to collapse
You can do it yourself easily, Open Up a Skin with 7zip and Replace Lockring.png with your desired Image (named the Same.) Or I think you can do the Same in Fusion.apk
Hei Guys, Hows u..?
After getting lot of PMs and Request Here i am giving u the Various Small DPI Navigation Bar mods for Xperia SP Deodexed / Odexed 4.3.
I tested this only in Deodexed 4.3 ROM. Dont it will work with Odexed. U can take a try with Backup...
SMALL DPI NAVIGATION BARS
Click to expand...
Click to collapse
28 DPI SMALL NAVIGATION BAR
CLICK HERE
36 DPI SMALL NAVIGATION BAR
CLICK HERE
40 DPI SMALL NAVIGATION BAR
CLICK HERE
44 DPI SMALL NAVIGATION BAR
CLICK HERE
48 DPI SMALL NAVIGATION BAR
CLICK HERE
Expect More Mods
INSTRUCTIONS
Download the Mod
Copy To Your Phone
Reboot To Recovery
Flash it and Reboot
Note :- Before Flashing Every Mod U need to check ur System/Vendor/overlay Folder. If any android-res28 or blah blah file is there means Remove it then Flash My Mod...
Credit
@Rajeev for Making Small DPI Mod For Me
Reserved For Future Development
Work great.
Sent from my C5303 using xda app-developers app
none works for me on 4.3 .266
saurabh808 said:
none works for me on 4.3 .266
Click to expand...
Click to collapse
It works mate
But you will get a big back button
SystemUi has to be fixed to avoid this problem.
i get problem with big back button also, dude,, just manually copying to vendor and restart it. it works, except the big back button
odie70 said:
i get problem with big back button also, dude,, just manually copying to vendor and restart it. it works, except the big back button
Click to expand...
Click to collapse
Upload your systemui i will fix it for you
dipesh1502 said:
Upload your systemui i will fix it for you
Click to expand...
Click to collapse
this is my systemUI dude, thanks before
odie70 said:
this is my systemUI dude, thanks before
Click to expand...
Click to collapse
heres your fixed apk
can u edit my SystemUI bro? thx
ploreal said:
can u edit my SystemUI bro? thx
Click to expand...
Click to collapse
Try using the one i posted above
With backup
Otherwise i l make it for u
dipesh1502 said:
Try using the one i posted above
With backup
Otherwise i l make it for u
Click to expand...
Click to collapse
i tried but got same proble big back button
ploreal said:
i tried but got same proble big back button
Click to expand...
Click to collapse
Ok i will try and let you know
would you like to guide me how to do this by myself?
i really apreciate your work but i wanna know how to do this by myself (you know i mean )
currently on miui -> will back to stock 266
thanks
gettherefast said:
would you like to guide me how to do this by myself?
i really apreciate your work but i wanna know how to do this by myself (you know i mean )
currently on miui -> will back to stock 266
thanks
Click to expand...
Click to collapse
U wanna know how
To make the mod or how to fix the big back button?
Any chance for 5 button nav bar for this ROM ? :angel:
powercepyman said:
Any chance for 5 button nav bar for this ROM ? :angel:
Click to expand...
Click to collapse
Soon
Hi!
Nice work dude, I only have a newbe question...
The android-res.apk was the standard one and wasn't need to remove or right?
You mean to remove only the apks with 28 36 40 44 or 48 suffix right or I misunderstood?
Thank you!
Simone"Tuxedo"Monsignori
Tuxedo75 said:
Hi!
Nice work dude, I only have a newbe question...
The android-res.apk was the standard one and wasn't need to remove or right?
You mean to remove only the apks with 28 36 40 44 or 48 suffix right or I misunderstood?
Thank you!
Simone"Tuxedo"Monsignori
Click to expand...
Click to collapse
Yep suffix ones
would this work for eXistenZ rom v3.3.0 ?
Hey there I recently updated my phone to MM 6.01.
It bugs me that I can't have all Quick Settings in the status bar...only the 9 "most-wanted" icons.
Does anyone know a way to fix this? I miss the old Quick Settings from 5.01.
Hi,
Yes and no,
That's anoying of course, but it's not a bug, MM 6.01 have also lost the "back with fingerprint"
Personnaly, i add the basic widget, to have back my sync.
But, by changing Dpi you can remove the "setting" trigger
That's why, i prefere Lollipop, but i hope one day they'll put back this ....
Marsters said:
Hey there I recently updated my phone to MM 6.01.
It bugs me that I can't have all Quick Settings in the status bar...only the 9 "most-wanted" icons.
Does anyone know a way to fix this? I miss the old Quick Settings from 5.01.
Click to expand...
Click to collapse
In order to do that you have to decompile SystemUI.apk edit the Status bar toggles and recompile it.
DigiGoon said:
In order to do that you have to decompile SystemUI.apk edit the Status bar toggles and recompile it.
Click to expand...
Click to collapse
Hi,
To get systemui.apk, is there a way to send it to the pc for decompile it ?, And what to edit in there ? Thx
Edit 1 : found the path : system/priv-app/systemui
@Kikito94 : Sorry but I'm not a App Developer, so I don't know what to specifically edit in there, but I think you have to edit various smali files to change the toggles, they are linked to some IDs in some xml files. I followed this guide to put Lidroid toggles in my JellyBean device, I hope this guide is not expired as now we have Marshmallow.
DigiGoon said:
@Kikito94 : Sorry but I'm not a App Developer, so I don't know what to specifically edit in there, but I think you have to edit various smali files to change the toggles, they are linked to some IDs in some xml files. I followed this guide to put Lidroid toggles in my JellyBean device, I hope this guide is not expired as now we have Marshmallow.
Click to expand...
Click to collapse
Hehe okay, thx anyway
Kikito94 said:
Hehe okay, thx anyway
Click to expand...
Click to collapse
LOL You quoted it before I can edit it. Please edit your post it seems like a double post.
DigiGoon said:
LOL You quoted it before I can edit it. Please edit your post it seems like a double post.
Click to expand...
Click to collapse
:d Done ! Well i just read the post you share but whaw my head's gonna explode hehe, as long as i stay in B180 i havn't got this problem, but in a few, i'll receive the 8, and idk if we can rollback
Kikito94 said:
:d Done ! Well i just read the post you share but whaw my head's gonna explode hehe, as long as i stay in B180 i havn't got this problem, but in a few, i'll receive the 8, and idk if we can rollback
Click to expand...
Click to collapse
Oh cool, you gonna buy Honor 8? It's another Kirin. But a dope one.
DigiGoon said:
Oh cool, you gonna buy Honor 8? It's another Kirin. But a dope one.
Click to expand...
Click to collapse
Yep already buy, i just wait the shipping ( via aliexpress) not european, but the full network, that's why i hope the multitool to debrand it
Kikito94 said:
Yep already buy, i just wait the shipping ( via aliexpress) not european, but the full network, that's why i hope the multitool to debrand it
Click to expand...
Click to collapse
Yes, somebody will make one for Honor 8 so that you can debrand it to anything.
And congrats on the new phone BTW
DigiGoon said:
Yes, somebody will make one for Honor 8 so that you can debrand it to anything.
And congrats on the new phone BTW
Click to expand...
Click to collapse
Yup that's all i hope and thx
I am on Paranoid Android ROM. It's pretty much Aosp and doesn't allow me to change number of rows of quick settings tiles.
Sjain11 said:
I am on Paranoid Android ROM. It's pretty much Aosp and doesn't allow me to change number of rows of quick settings tiles.
Click to expand...
Click to collapse
Screenshot
Sjain11 said:
Screenshot
Click to expand...
Click to collapse
Decompile SystemUI.apk. in the res/values/integers.xml change quick_settings_num_columns from 3 to what you want.
Tulsadiver said:
Decompile SystemUI.apk. in the res/values/integers.xml change quick_settings_num_columns from 3 to what you want.
Click to expand...
Click to collapse
Thanks for replying, but I am not much familiar with what you are saying.
Can you please tell in little detail about how do I decompile SystemUI.apk and will I have to reflash the ROM with modified apk?
Sjain11 said:
Thanks for replying, but I am not much familiar with what you are saying.
Can you please tell in little detail about how do I decompile SystemUI.apk and will I have to reflash the ROM with modified apk?
Click to expand...
Click to collapse
Ticklemyandroid is what I use. Yes, you have to flash the modded apk back.
https://forum.xda-developers.com/showthread.php?t=1633333
Did you get it to work?