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

lundi 24 mars 2014

[Q] Extract Background Image of APK File topic




I am trying to extract a background image from a GO SMS Theme and customize it. I looked all through the res folder of the APK and the image that was used as the background that I want was nowhere to be found. Anyone have an idea of where the image could be located?





Custom Icon Background Transparency Problem topic




Hey all,

Hope you can provide some assistance. I got an all-white icon set, and modified a few .pngs in Photoshop to add color to match my theme. Backgrounds were transparent, displayed transparent in Photoshop, still opened as transparent after I exported them for web as png-24s with transparency preserved. However, as soon as I drag the icons over to the root of my storage card, my phone (HTC One) displays the once transparent backgrounds as black. What gives? I've tried using Photoshop 7, Photoshop CS6, and GIMP with the same results. I'm I missing something?





mercredi 19 mars 2014

[Q] Remote and Background app topic




HI,
is it possible to secretly and remotely install an app without the user noticing?





vendredi 7 mars 2014

[Q] Kik messenger background image topic




I have been trying to find the code for setting a kik messenger background image. I have tried editing the apk file however that does not work, as the background is set to a solid color. Even when putting in the code to add an image it does not work, the application just force closes or the picture never loads.

Can any one, or has anyone successfully added an image background to kik messenger chats?

Please assist if you can, I have been searching for a way to do this forever!





mercredi 5 mars 2014

[tut] change system background from transparent to black topic




This would be helpful to those who are using rom with trans. Background and want to convert it to black like in Hyperion rom!!!!!!!!!!

So let's begin
1. Decompile your framework-res.apk (dont ask me how to)
2. Go to res folder, open values folder and then styles.xml
3. In that scroll down and find <style name="theme">
4. Under that you will find <item name="colorbackground">
change its color from transparent to black.
5. It should look something like this <item name="colorbackground">@color/black........
6. Now scroll down and find <item name=windowbackground> and do same
for it as above.
7. Now scroll almost to last and find <style name="theme.expandedmenu"> and change
the values under it as done above.
8. Compile it and copy META-INF and androidmanifest.xml from original apk to the
new one.
9. Most important= enjoy and do press thanks!!!!!!





dimanche 23 février 2014

How to change Phone in Call screen background? topic




How can I mod in call screen background?
I am using Gingerbread.

Please direct me to the correct file to mod in Phone.apk or any apk

PFA screenshot.
I want to remove that lines background.





jeudi 30 janvier 2014

Camera app Background Defocus port topic




hello people I have the app Background Defocus of Z1S and wanted to know if someone can port it to our xperia s
from already thank you and sorry for bad English














Attached Files





File Type: apk bgdefocus.apk -
[Click for QR Code]
(7.08 MB)









mardi 28 janvier 2014

Background app code topic




Hi everybody

Could anyone help me with is code ,
show u the apps which working in background

Thank u

Sent from my GT-I9505 using XDA Premium 4 mobile app





No Background in Messages topic




Anybody else getting this? Also wallpaper shows up behind switches between tabs in Dialer.

Sense 5
AT&T

Sent from my HTC One X+ using XDA Premium 4 mobile app








Attached Thumbnails


Click image for larger version<br/><br/>Name:	1390950055023.jpg<br/>Views:	N/A<br/>Size:	30.7 KB<br/>ID:	2545417
 
















[Statusbar] Change the icons and background of your statusbar for all android devices topic




FOR ALL ANDROID DEVICES

Note: Take a complete nandroid backup before doing this, though there is no threat. It is still compulsory to take nandroid backup!!!

Follow the steps carefully, they are very easy:

1) Download NinjaMorph from GooglePlay, https://play.google.com/store/apps/d...injamorph.free
2) Open it, you need root of course. Click on New Project.
3) Now browse down to system, and choose it, then choose app folder.
4) A long list will appear. Search SystemUI.apk and choose it. The app will extract the apk. Stop!!!! Don't go any further.
5) Join your mobile to pc and allow USB storage.
6) Go to your Mobile's sd on the pc and find a folder named android themes, open it. Then open a folder named workspace, then SystemUI and then res.
7)Now open a folder named drawable-Idpi in which you will find many files.
8) now we start changing!
9)You should set your windows to show the folder in tiles. So now you will see the quickpanel icons like bluetooth and wifi with names like quickpanel_icon_bluetooth_on etc.
10)Find a desired icon and change it with, but remember the new icon should be of the same pixels and should also have exactly same name as the old one, EXACTLY SAME!!!!!
11) Do not only change the icons which represent a function is on like bluetooth on but also change its off icon like quickpanel_icon_bluetooth_off. REMEMBER IT SHOULD BE THE NAME AS THE OLD ICON'S NAME!!!!
12) Now find icon named statusbar_background.9 and change it with your desired background. Do the same with title_bar_portrait.9. Remember the new icon should be of the same pixels and should also have exactly same name as the old one, EXACTLY SAME!!!!!

Now disconnect usb storage, go to NinjaMorph again but this time choose Finish Project, choose SystemUIapk and click yes on all that pops up.

Now your status bar will disappear but don't worry just reboot. REMEMBER ALL NEW ICONS SHOULD BE THE NAME AND SIZE AS THE OLD ICONS!!!!

IF YOU MADE ANY MISTAKE IN THE STEPS AND YOUR STATUS BAR IS RUINED THEN EITHER EDIT IT AGAIN CORRECTLY OR DO A NANDROID RESTORE.





lundi 27 janvier 2014

request background wallpaper topic




Hi, could someone postarmi this background of grand duos: ?
I searched the internet but nothing.





dimanche 26 janvier 2014

[Q] Background problem topic




My website at charterfishingservices.com has responsive design and a background that looks great on everything but kindle fire and some android phones. Is this common and can you point out the fix. It's a wordpress site, the CSS is responsive, but should I make a new CSS for the silk os?





samedi 25 janvier 2014

Settings background (background_holo_dark) topic




[Using Android 4.3.1 (CM10.2) on a Galaxy Nexus]

I'm attempting to replace the stock gradient background of the settings menu. I was able to get it to show all black instead of the gradient but I can't seem to get it to show a PNG image.

This is what is found in the /res/drawable/background_holo_dark.xml file

Original gradient:

Code:


<shape
xmlns:android="http://schemas.android.com/apk/res/android">
<gradient android:startColor="#ff000000" android:endColor="#ff272d33" android:angle="270.0" />
</shape>


Black background:

Code:


<?xml version="1.0" encoding="utf-8"?>
<shape
  xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/black" />
</shape>


Attempt at using a PNG image (image placed in /drawable-nodpi/background_holo_dark.png) courtesy of this thread

Code:


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:orientation="vertical" android:background="@drawable/background_holo_dark">
</LinearLayout>


Using the above code to use an image as the background causes settings to force close. When I open Root Browser (which uses background_holo_dark.xml) it says something along the lines of "size of image too large".

Anyone know why the code fails?