ads

Affichage des articles dont le libellé est full. Afficher tous les articles
Affichage des articles dont le libellé est full. Afficher tous les articles

mardi 22 septembre 2015

Disable full screen keyboard in landscape



Is there a module for that? I found one at xposed repository but it haven't been updated since last year and it's not working anymore.

Enviado de meu D5833 usando Tapatalk



S6 Full Port Rom not boot ?



Hello s4 mini users, :)
I am sorry bad english. :o
I tryed s6 full port rom(can see click) port s4 mini (i9195). Kernel booted but system not booted. But updater-script no errors. All symlink success.
Base rom : Cm12.1 f4k (Decompress system.dat)
Port rom : albe95 s6 port open beta v4
Kernel : stock cm 12.1 kernel not booted. f4k cm 12.1 kernel booted.

Main problem (i think ): E/sdcard ( 246): missing packages.list; retrying :(
logcat: http://pastebin.com/QT5wit0k
updater-script : uploading...
build.prop: uploading...

More details:
Please help me!
(I upload speed very very slow(30 kb/s). I not uplading ported rom (1.7 gb not compression))
@arco68 @F4k @SilviuMik @kokobenjamin



lundi 21 septembre 2015

FULL SCREEN Edge to Edge Coverage NO HALO Glass Protector



Got this in today. FULLY covers the front. Edge to edge protection. Zero HALO.

I tried, SKinomi, SuperShieldz, iMonkey, Xtreme Guard, IQ Shield, and this is by far the best one.

Video HERE



samedi 19 septembre 2015

Rom With Full -O3 Flags



This thread is more of a polite request to any developer. I used a Samsung galaxy s3 with archidroid ROM which has been compiled with full -O3 archi optimisations http://forum.xda-developers.com/show....php?t=2754997 and it was lightning fast :) I am (Politely) requesting any developer to create a Rom with these optimisations so we can all enjoy a buttery smooth experience.

Thanks :)



vendredi 18 septembre 2015

[Full Guide] Xperia Lollipop Full Theming ~ From Newbie To Pro !



Hello everybody ! today our guide is important and easy to learn, I'm gonna explain how to make a complete/advanced/full theme, with the ability to change everything ! from SystemUI icons ( Wifi .. etc ) to Apps icons or even Contact Icon, So ? what are you waiting for ! let's start the engine ! :D

In This First Full Guide, I'm gonna show what i've learnt in Xperia Lollipop theming field, without the " selfish " stuffs nor the " secrets ", because Knowledge must be for all, without any costs .. only Credits and putting Guide link costs :D :cool: .

Notes :
  • Read Number 4 For Making The Theme Change The App Content .

  • Don't Forget Me From Credits ;) .

  • The Way I Explain Is " Manual " Theming, You Can Use Theme Maker BETA From Sony .

  • Install Java .

  • Guide Requires Creative Person To Make Awesome Themes .

  • You Don't Need To Be A Programmer, Just Apktool .


Sections :
  1. Creating Or Importing A Ready Project via Eclipse / Android Studio .

  2. Theme Content Explain .

  3. AndroidManiFest.xml / Strings.xml / Preview Screens / Images Editing .

  4. Notes Making Theme Change Everything .

  5. Creating Assets Zips .

  6. Theming Android.Zip ( Framework-res ) .

  7. Theming SystemUI .

  8. Theming Home ( Launcher ) .

  9. Theming Clock .

  10. Theming InCallingUI .

  11. Theming Phonebook .

  12. Theming Messaging .

  13. Theming Calculator .

  14. Theming Settings .

  15. Theming Camera & Notes & Calendar & Email .

  16. Theming Small App Launcher & Small Apps .


1. Creating Xperia Theme Project - Eclipse



  • Open Eclipse .

  • Open File => Android Application Project

  • In " Application Name " Put Your Theme Name.

  • In Project Name Put Your Desired Project Name.

  • In Package Name Put Your Desired Package Name, Example : theme.xperia.abohani

  • For Minimum Required SDK, Select The Mini-SDK/API Version The Theme Will Work On, Example : API18 4.3 - API19 4.4.

  • For Target SDK, Put Your Top SDK/API Version The Theme Gonna Work On And Theme It.

  • For Compile With, Put it As Target SDK.

  • For " Theme " Put it None.

  • Press Next.

  • Un-tick " Create Custmom Launcher Icon " & " Create Activity ".

  • For " Create Project In Workspace ", Select the place you want to save the project in .

  • Now Your Project Is Ready To Modify .





1.5 Creating Xperia Theme Project - Android Studio



  • Open Android Studio.

  • Press " Start A New Android Studio Project ".

  • In " Application Name " Put Your Theme Name.

  • In Company Domain Put A Main Package Name, Ex : theme.abohani.

  • Package Name Will Be Automatically Generated as companydomain.applicationname, Ex : theme.abohani.applicationname .

  • Project Location, Select the place you want to save the project in .

  • Press Next.

  • Select " Phone and Tablet ", Select The Mini-SDK/API Version The Theme Will Work On, Example : API18 4.3 - API19 4.4.

  • Press Next .

  • Select " No Activity " .

  • Press Finish .





2. Theme Content Explain .



Xperia Theme contain the following :
  • Assets, Where we gonna support different app themng .

  • res/values, where we put the name of the theme and put the skin color ( 5.1 only ) .

  • res/drawable folders, where we put the theme icon / lockscreen wallpaper / home wallpaper for different screens .





3. AndroidManiFest.xml / Strings.xml / Preview Screens / Images Editing .



Editing AndroidManiFest.xml,



  • Open AndroidManiFest.xml with Notepad++ from the theme location .

  • Replace it with the following.




<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="theme.abohani.applicationname"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="22" />

<uses-permission android:name="com.sonymobile.permission.RUNTIME_SK IN" />

<runtime-skin version="1">
<asset path="assetname.zip" target="app.package">
<laf-version-filter from="1" to="1" />
</asset>
</runtime-skin>
<application
android:label="@string/semc_theme_title"
android:icon="@drawable/semc_theme_preview">

<uses-library android:name="com.sonymobile.runtimeskinning" />


<meta-data
android:name="com.sonymobile.runtimeskinning.core. image_wallpaper"
android:resource="@drawable/semc_theme_wallpaper" />

<meta-data
android:name="com.sonymobile.runtimeskinning.core. lockscreen_background"
android:resource="@drawable/semc_theme_lockscreen_wallpaper" />

<uses-library android:name="com.sonymobile.runtimeskinning_2"/>

<meta-data
android:name="com.sonymobile.runtimeskinning.core. SKIN_PREVIEW"
android:resource="@array/previews"/>

</application>

</manifest>

  • Edit android:minSdkVersion to the minSDK you selected .

  • Edit android:targetSdkVersion to the targetSDK you selected .

  • Edit package="theme.abohani.applicationname" to your theme package that you selected .

  • Edit android:versionCode and put the version code you want, ex " 1 " or " 21 " .

  • Edit android:versionName and put the version name you want, you can put letters too but without spaces .

  • In " <asset path="assetname.zip" target="app.package"> ", replace " assetname.zip " with the asset file located in YourProject/Assets, Ex : yourproject/assets/android.zip => path="android.zip " .

  • Replace " app.package " with the asset package, ex android = framework-res, so the package is " android ", ex2 SystemUI package is com.android.systemui, you can know it by decompiling the Apk, and check for " Package " in AndroidManiFest.xml .

  • Important, in " laf-version-filter " this is an important step to make the theme change the app content, let's take SystemUI for example, decompile it and navigate to AndroidManifest.xml, search for " laf ", you will see " laf version = 2 ", so you open your project AndroidManiFest.xml and edit " <laf-version-filter from="1" to="1" /> " to " <laf-version-filter from="2" to="2" /> ", Make it match the Laf version .




Editing Strings.xml .



Navigate to YourProject/res .
Delete everything expect " values " folder .
Open it and open Strings.xml .
Replace the content with this :



<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="semc_theme_title">Xperience™ | MaTeRiaL Blue</string>
</resources>


Replace between " > < " with your Theme Name .


Editing Screens Preview - Lollipop Only .



Navigate to Values folder again .
Create " arrays.xml " file in it .
Put this content in it :



<?xml version="1.0" encoding="utf-8"?>
<resources>
<array name="previews">
<item>@drawable/pre1</item>
</array>
</resources>

  • When you Open Themes Picker in your Xperia, you will the a preview you made it for the theme .

  • Now, Download this FILE,then put the drawable-xxhdpi folder in " res " folder, and modify the " pre1 " image, if you want to add more Screens, just make another image and add another line in " arrays " .




Editing Images, Wallpapers / Theme Icon .



  • Download this File .

  • Put the content in YourProject/res .

  • Edit the images, but PLEASE DO NOT COPY MY THEMES ICON STYLE .







4. Notes Making Theme Change Everything .



  • There are 2 reasons for not being able to change the theme content fully .

  1. You Didn't Put The Correct LAF Version .

  2. The App You Need To Change Needs Skin-Permission.xml file editing, See This Guide For Info .





5. Creating Assets Files .



Making An Asset file is pretty easy, first you need the apk you want to theme, let's take how to make SystemUI Asset file as an example, and then you can make a one like it :



Download & Decompile This Asset File .
Delete The res folder content .
Decompile SystemUI.apk .
Navigate to SystemUI/res, search for things you wanna edit ( see guide below for theming guide ), then copy the files you wanna edit or you the files you have edited them to " Asset/res ", and then recompile the app, and rename it to " com.android.systemui.zip " .
After that go to AndroidManifest.xml, and put the correct Laf Version for the SystemUI, then replace " assetname.zip " with " ccom.android.systemui.zip ", and replace " app.package " with " com.android.systemui " ( the SystemUI package name ) .



Make the other assets files like it, See below for theming Guide .



6. Theming Android.Zip ( Framework-res ) .



[LIST][*]Download this asset file from here .[*]Decompile it .[*]Open res/values/colors.xml, Now you need to know what these lines mean :



  • <color name="somc_color_dark_primary_dark">#ff0288d1</color> This Is Semi-Main Color in Dark Themed Apps . ( Put A Darker Color More than " primary_dark " color )

  • <color name="somc_color_dark_primary_light">#ff0288d1</color> This Is Semi-Main Color in Light Themed Apps . ( Put A Lighter Color More than " primary_light " color )

  • <color name="somc_color_primary_dark">#ff0288d1</color> This Is Main Color in Dark Themed Apps .

  • <color name="somc_color_primary_light">#ff0288d1</color> This Is Main Color in Light Themed Apps .

  • <color name="somc_color_accent_dark">#ff015785</color> This Is Secondary Color in Dark Themed Apps .

  • <color name="somc_color_accent_light">#ff015785</color> This Is Secondary Color in Light Themed Apps .



[*]For Editing Slider Look, like a thin slider or a bold one, just modify the height of these files, the color doesn't matter because it will be linked with somc_color_accent color .



  • somc_progress_bar_bg_dark.9

  • somc_progress_bar_bg_light.9

  • somc_progress_bar_primary_dark.9

  • somc_progress_bar_primary_light.9

  • somc_progress_bar_secondary_dark.9

  • somc_progress_bar_secondary_light.9



[*]For Editing Text Selector Buttons Look, Edit these, you can put shadows and stuff if you want, it's linked with " ?tintcolor ", put you can put your own style - " mrtl " are linked color, but the others are not linked, you need to modify both of them with the color you want :



  • text_select_handle_left

  • text_select_handle_left_mtrl_alpha

  • text_select_handle_middle

  • text_select_handle_middle_mtrl_alpha

  • text_select_handle_right

  • text_select_handle_right_mtrl_alpha



  • Adding Custom Tabs Style - Switches - Buttons Editing - Toast - .. etc
    • Download The Following Zip.

    • Extract it in Android/res folder .

    • Modify the images you want, then compile ( Images taken from Mad Max Theme - Icons names describe what they are ) .





7. Theming SystemUI .



First of all, the new Xperia Lollipop SystemUI is using " VectorType " images, to resize the Apk size, and not reducing drawables images, in previous version you have to add the same drawable to different screens, now you only need to put it as a VectorType image and it will Auto-Resize, So there are two ways to modify SystemUI Icons / Toggles :



  1. Editing VectorType Images, Open the Drawable folder, then open the drawable you want to edit, like " ic_qs_airplane_on ", and you will see " path data ", So how to replace it ? First you need to have your icon in SVG, create it in SVG Software or Convert it to SVG ( not-tested ), after that open that SVG icon with notepad++ and copy the path data and replace it with the current.

  2. Replacing Drawables With Images, If you don't like the VectorType way, you can make an image with the same drawable.xml file and put it in your screen dpi, for example : ic_qs_airplane_on.xml, replace it with ic_qs_airplane_on.png in Drawable-xxhdp, for the height & width .. take it from Kitkat SystemUI so it can match the xxhdpi screens and not being mis-sized .




Editing SystemUI Bar Color :



  • Go to res/values .

  • Make " drawables.xml " .

  • Put this in it :




<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="drawable" name="somc_status_bar_background_dark">#ff0277bd</item>
<item type="drawable" name="somc_status_bar_background_light">#ff0277bd</item>
<item type="drawable" name="somc_status_bar_background_translucent">#ff0 277bd</item>
</resources>

  • Replace " background_dark " with a darker color than " primary_dark " in android.zip .

  • Same for Light .

  • For Translucent, you can delete, deleting it means the apps that use Transparent SystemUI bar not going to have a colored SystemUIbar, if you add it you will have your Color .




Please note there are some images can be found in drawable-xxhdpi folder you can edit, like Data Toggle icon, and other .




8. Theming Home ( Launcher ) .



In Home.Apk there are a lot of images to edit, but here's a list for the " important ones " :
  • For Editing Apptray Slider/Drawer background, modify this image " apptray_drawer_background.9 " .

  • For Editing the divider between the sections in Apptray Slider/Drawer, modify this " drawer_list_divider.9 " .

  • For Editing the Selected Apptray Slider/Drawer Background ( When you long press a category ), modify this " drawer_list_selected.9 ", give it opacity, do not make it a solid color .

  • For Editing Apptray Slider/Drawer Text Color, Modify this apptray_drawer_text_color in values/colors.xml .

  • For Editing Apptray Slider/Drawer Badge Text Color , Modify this apptray_drawer_badge_text_color in values/colors.xml .

  • For Editing Home Badge Text Color, Modify this home_badge_text_color in values/colors.xml .

  • For editing Apptray Slider/Drawer Background, modify this apptray_drawer_background in values/colors.xml if only Editing Drawable didnt work .





9. Theming Clock .



  • Clock got only Tab icons & apps icons to edit, So here is the way to modify them all :

  • Download this zip .

  • Extract it in Clock asset " res " folder .

  • Modify them .

  • Compile .





10. Theming InCallingUI .



  • Nothing important in InCallingUI, only the images to modify .

  • Download This zip .

  • Extract is in Clock Asset " res " folder .

  • Modify them, and you can modify the other icons, but these are the " main " ones .





11. Theming Phonebook .



Again nothing to modify in Phonebook, only Contact icons and other less-important icons, which can be found in drawable-xxhdpi, but for editing Dial button color, follow this :
  • Create " colors.xml "

  • Put the following in it :




<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="dial_button_color">#ff0288d1</color>
</resources>

  • Replace between " > < " with the color you want .





12. Theming Messaging .



Nothing to modify in Messaging also,expect for Drawables, you can dig into colors.xml to find something to edit .
  • Download this zip.

  • Extract it in Messaging asset " res " folder .

  • Modify them .

  • Compile .





13. Theming Calculator .



The only thing to edit is the app icon & some colors codes, like the right extra menu, accent color and text color.
  • Navigate to res/values .

  • Create " colors.xml " .

  • Put the following in it :




<color name="calculator_accent_color">#ff0288d1</color>
<color name="pad_advanced_background_color">#ff0288d1</color>
<color name="pad_button_advanced_text_color">#ffefefef</color>

  • Replace the hex codes, the " name " describe what it means .





14. Theming Settings .



  • Only Drawables to Modify, nothing in " Colors " really important .





15. Theming Camera & Notes & Calendar & Email.



  • Camera :
    • Only Drawables, like Manual Mode, Smile ..etc, and there's Settings Text Color, which i don't advice to mode it .


  • Notes :
    • Notes App isn't completely in Material Design, so you can modify the drawables, and it contains the Small App ( Recorder & Notes ), you can modify them there .


  • Calendar :
    • Only App Icon .


  • Email :
    • Only Icons & Apps Icons - they are already in Material Design .






16. Theming Small App Launcher & Small Apps



Notes & Recorder Small-Apps Can Be Found in Notes App .
  • Active Clip :
    Only Drawables .

  • Browser :
    Only Drawables .

  • Caculator :
    • Flat Look, Make the following images transparent ( delete the layers and replace them with empty ones ) .

    • calc_equals_btn_pressed

    • calc_equals_btn

    • calc_display

    • calc_btn_clear_pressed

    • calc_btn_clear

    • For Text Color & Background, can be found in Colors.xml .


  • Timer :
    • Only Drawables.






Credits :
  • @Serajr For VectorType Tip! Thanks man :highfive:




jeudi 17 septembre 2015

Cant delete backups / Memory Full



Hi, Im new to this device but right after I got it I did the right thing and voided my warranty :) Rooted and installed a custom recovery. The recovery has been a bit of a pain but that is a story for another thread.

The problem I am having is that when I try to take a backup from recovery it errors (I forget the error, sorry. ) however the backup is still right there in the backup directory. I tried a second attempt at a backup (to see if it would error again) and these two backups filled my remaining memory. lI of course used my file explorer to delete these extraneous backups-- only to see that they are not deletable. I also tried on the PC. The folder lists read and write in the permissions. I am kind of at a loss as to what to do. IIRC correctly from a while back with this issue the answer lies somewhere in CHMOD, but I cant quite seem figure it out. CD to the directory in a terminal emulator and then CHMOD 777? Thanks for your help in advance.



Full Wipe or No Wipe?



Hello everyone,i wanted to ask if when you do a flash of a stock firmware with Odin, there is a Full Wipe bringing the Notes 2 SCH-i605(first was his, now it has passed to me)to factory,because my sister said that any Samsung flash a stock firmware with Odin is No Wipe!
I always Full Wipe and to you?



Does Honor 7 support full phone encryption?



Hi,

I'm thinking on buying the EU version of the Huawei Honor 7 device (PLK-L01).

The one thing that is still an open question for me is the support for full-phone encryption.

Can anybody please verify if it is possible to fully encrypt the phone?

Thanks in advance for your help.

Regards,
Pawel S.



dimanche 13 septembre 2015

full flash file



hi

i need full flash files for n910f.
AP CP CSC AND PIT FILE.
my imei and base band is damaged.
THANK YOU.



vendredi 11 septembre 2015

HDMI screen zoom - not full 1080p?



I bought a UG007 android hdmi stick to watch films in 1080p on my hdtv. however, when I start the device, it doesn't fill the whole screen. It starts to fill it only once I turn the slider in the "screen zoom" part of the settings. I worry that I may not be getting full 1080p image but rather something upscaled. With the screen zoom slider at its lowest setting, it looks like this:
My hdtv

The problem (?) is not solved even if I put some other firmware (Finless Rom with a 1080p kernel) on the device.



vendredi 4 septembre 2015

Please help, full screen album art missing on lollipop



Hey guys I have a SM-G530H XXU baseband on Lollipop 5.0.2 Russian build. It works perfect in my Indian phone except one thing. I don't see any more album art on my lockscreen like in KK 4.4.4. Please help. Do I have to use Google music player for it to work or what?
Second thing, last night my wallpaper went black and recent apps stopped showing up and it kept saying process system has stopped. I cleared dalvik and cache and fixed permissions and it worked again. Please help with these 2 issues








Attached Thumbnails


Click image for larger version<br/><br/>Name:	Screenshot_2015-09-04-09-31-09.jpg<br/>Views:	N/A<br/>Size:	40.5 KB<br/>ID:	3462482
 














dimanche 30 août 2015

Note 5 Full icon



Link: http://droidsans.com/node/184785






Test: :cool:Screenshot :o



Galaxy S5 Storage full -10000 MB?? Help me.



Today, I decided to unroot and factory reset my phone. When it booted up again, I noticed that I can't take any pictures or download music. I couldn't even take screenshots of the warning message so I had to do it with my dad's phone.

The phone says I have no storage space when I obviously do. How do I fix this?

I've tired googling this problem but I couldn't find much.

sorry for the big images...







[GIVAWAY] Black carbon fibre skin sticker full body wrap



Here I am, giving away a Nexus 5 sticker skin. It's black carbon fiber imitation (similar to this: http://goo.gl/guGp2W).
There's no rule of the giveaway. First one to send me a PM, gets the skin.
Sadly for some, this will be limited to Romania. The skin will be sent via national postal service, except if the winner wants otherwise, case in which the winner pays the shipping.
Good luck!



Full bars but no Data



So, yesterday I flashed my phone from lollipop to kitkat after a version for my phone was finally released due to a member of this community(thank you <3) and everything went smoothly and I had no hiccups during the process... but once I restarted my phone, I noticed I didn't have 1x, 3g, or 4g as a signal indicator but I had full service and I could make calls.... just no texts or data.

Any idea how to fix this? I should note I'm using nTelos.... and it's CDMA.

I can sometimes get it to connect to 3g using an APN edit in the hidden settings but after like 5 minutes it goes back to full bars and no data connectivity.



Update Cyanogen Rom Without Download Full Zip



I Suggest this app to everyone Using CyanogenMod Roms
Really helpful !
https://play.google.com/store/apps/d...=com.cyandelta

No need to download full rom
just download daily update



samedi 29 août 2015

Full Wipe or No Wipe?



Hi guys,i wanted to ask you something,when you restore a stock firmware of Notes 2 N7100 with Odin,is a Full Wipe or does a No Wipe?



Full AOSP on MStar Cedric3 head unit



Hi!

I bought it on eBay one head unit with the following originals characteristics:
CPU: Cortex A9 Dual-Core 1Ghz
GPU: Mali 400
RAM: 1GB DDR3
Android Version: 4.4 (but really is 4.2)
MCU original Version: 4.3.11-1-03-615101-150112
System Version: 2.9.5_20150413

Anyway, I tried to update the MCU with the head unit who brought extra settings -> model choose, but the upgrade to 4.3.13 everything works fine except the lights that indicate the volume level, and that is not moved up or down the volume.
I suppose that changing the MCU has stopped working. How could recover the original MCU?
I contacted the seller, but no longer sold items on eBay and I doubt I answer.

Thanks in advance!!








Attached Thumbnails


Click image for larger version<br/><br/>Name:	IMG_20150725_132344.jpg<br/>Views:	N/A<br/>Size:	259.2 KB<br/>ID:	3455368
 

Click image for larger version<br/><br/>Name:	20150827_191417.jpg<br/>Views:	N/A<br/>Size:	256.5 KB<br/>ID:	3455369
 

Click image for larger version<br/><br/>Name:	IMG_20150726_173154.jpg<br/>Views:	N/A<br/>Size:	251.1 KB<br/>ID:	3455370
 

Click image for larger version<br/><br/>Name:	$_57.JPG<br/>Views:	N/A<br/>Size:	125.1 KB<br/>ID:	3455371