[THEME] Aeroglass - Red (JPX/Y/U JS3)

:D ich bastle grade am update :D
 
so habs jetzt auch ^^. Also von dem was bis jetzt geändert wurde gefällt es mir :). Ich würde allerdings noch was in der dropdownbar mit den Funktions-Icons machen. Man erkennt den unterschied zwischen an und aus nicht so gut ;)

@Afacan kannst ja aus dem hier was böses machen :D
 

Anhänge

  • android-mascot.jpg
    android-mascot.jpg
    11,1 KB · Aufrufe: 252
  • Danke
Reaktionen: philippsp
Danke für die Png, werde sie gleich mal einbauen...
 
:D lol das is eine von irgentwo mit google gefunden ^^. bin mal gespannt, wie die im theme aussehen wird ^^ :)
 
So schau:

status_bar_background.9.png

gefällts dir?
 
Wie findet ihr ihn?
 

Anhänge

  • android-mascot Kopie.png
    android-mascot Kopie.png
    16,6 KB · Aufrufe: 239
  • Danke
Reaktionen: philippsp
Der ist echt geil!!!
 
wird gerade eingebaut, update kommt vlt. heute noch ;D


Edit: Update kommt morgen!
 
geil :scared: noch ne rote Kravatte dazu und perfecto :D
 
Soooo....

Jetzige Arbeit:

Statusbarbackground geändert, siehe Bild, Lockscreen geändert, + 4 Lockscreens!

Gibt es noch Wünsche? zB Dialer, Suche...

_______________________

Wieso bedankt sich eigendlich niemand im 1. Post?????

:lol::lol:
 

Anhänge

  • SC20110202-214139.png
    SC20110202-214139.png
    48,4 KB · Aufrufe: 163
Ich finde man kann schlecht unterscheiden ob ein quick launch Icon an oder aus ist. Und das Datum sieht man auch irgendwie schlecht.

Sent from my GT-I9000 using Tapatalk
 
das sieht doch geil aus :D

bring mal in die icons (wlan, gps, ...) unten an den weißen Streifen eine icon übergehende Schattierung ein ;) Wenn etwas aktiviert ist, kann dann auch das icon vllt. etwas farbintensiver werden.
ein dialer muss natürlich sein. Die Tasten könnten in den Design, wie beim betterkeyboard sein (wenn du es kennst... gibts ne demo im market) allerdings halt mit rot ^^. Mit meiner schwarzen Suche vom Darky Rom bin ich noch zufrieden :D
 
Das mit den Quickicons ist im Update dann schon gefixt !

Sent from my GT-I9000 using Tapatalk
 
Irgendwie stehe ich anscheinend im Moment auf dem Schlauch, aber warum sind denn oben in der statusbar drei Symbole bzw. Was ist da was? Rechts denke ich mal Netz, links wlan und Mitte?

Sent from my GT-I9000 using Tapatalk
 
In der Mitte ist das Symbol für Stumm (vibrieren) :D
 
Ah ...
Wie gesagt, das Datum oben müsste noch farblich geändert werden.

Sent from my GT-I9000 using Tapatalk
 
Ja....

Wenn ich wüsste wie :D

Sent from my GT-I9000 using Tapatalk
 
[TUTORIAL] Where to find the colors for making a theme - xda-developers

1. Date and notification ticker
Files that have to be edited:
/system/framework/framework-res.apk
DECOMPILED_DIR/res/layout/status_bar.xml

What you have to do:
Extract the framework-res.apk from your phone/rom zip file
Decompile your framework-res.apk using apkmanager
Edit the file DECOMPILED_DIR/res/layout/status_bar.xml
Search for <com.android.server.status.TickerView
As child nodes you will see TWO <TextView> tags. If not present, you must add android:textColor="#ffffffff" to the attributes. It will set your color. the four bytes mean: transparency, Red, Green, Blue (where transparency means: FF no transparency and 00 fully transparent). You have to set the color for both <TextView>s as Android will alternate between them when the notification ticker should show more than one line.
The color for the date will be in the <com.android.server.status.DateView>
Save the file
IN APKManager choose the option to compile your framework
Answer yes when you get asked if it is a system apk and if you want to copy files from the original framework. After the original framework has been extracted, change to your "keep"-Directory and delete the files resources.arsc and res/layout/status_bar.xml.
Let apkmanager continue its work.
now you have a new apk file in your place-here-for-modding directory, which you can push on your phone (DO IT IN RECOVERY): adb push unsignedframework.apk-filename /system/framework/framework-res.apk
 
  • Danke
Reaktionen: philippsp
Sehr kompliziert, (blöde Frage): nur für was braucht man den apk Manager?

Was bringt mir der?

Und wie weiß ich welcher Text welche Farbe bedeuten soll?
 
Steht doch da:

Decompile your framework-res.apk using apkmanager

Damit kannst du die framework-res.apk dekompilieren.

Die dekompilierte xml sieht dann so aus:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<com.android.server.status.StatusBarView android:orientation="vertical" android:background="@drawable/statusbar_background" android:focusable="true" android:descendantFocusability="afterDescendants"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <LinearLayout android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <com.android.server.status.IconMerger android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/notificationIcons" android:paddingLeft="6.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" />
        <LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/statusIcons" android:paddingRight="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
    </LinearLayout>
    <LinearLayout android:orientation="horizontal" android:id="@id/ticker" android:paddingLeft="6.0dip" android:animationCache="false" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <ImageSwitcher android:id="@id/tickerIcon" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginRight="8.0dip">
            <com.android.server.status.AnimatedImageView android:layout_width="25.0dip" android:layout_height="25.0dip" />
            <com.android.server.status.AnimatedImageView android:layout_width="25.0dip" android:layout_height="25.0dip" />
        </ImageSwitcher>
        <com.android.server.status.TickerView android:id="@id/tickerText" android:paddingTop="2.0dip" android:paddingRight="10.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_weight="1.0">
            <TextView android:textColor="#ffb4b4b4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
            <TextView android:textColor="#ffb4b4b4" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
        </com.android.server.status.TickerView>
    </LinearLayout>
    <com.android.server.status.DateView android:textSize="16.0sp" android:textStyle="bold" android:textColor="#ffb4b4b4" android:gravity="left|center" android:id="@id/date" android:background="@drawable/statusbar_background" android:paddingLeft="6.0px" android:paddingRight="6.0px" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
    <SeekBar android:id="@id/zzz_statusbar_brightness" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent" android:indeterminateDrawable="@null" android:progressDrawable="@null" android:thumb="@null" />
</com.android.server.status.StatusBarView>
 
  • Danke
Reaktionen: philippsp

Ähnliche Themen

S
Antworten
1
Aufrufe
1.668
seehausmoto
S
F
Antworten
6
Aufrufe
2.855
GGK
G
regedy1
Antworten
240
Aufrufe
33.978
regedy1
regedy1
Zurück
Oben Unten