[Mod][Source]Do it yourself - SystemUI - Quicksetting - Background

dann bleibt ja der "Bereich" dennoch erhalten. Auf diesen kann man ja getrost verzichten.
Der fehlende Setting-Button is ja woanders ebenfalls zu finden.
 
<RelativeLayout android:background="@drawable/tw_quick_panel_plnm_bg" android:layout_width="fill_parent" android:layout_height="@dimen/status_bar_expanded_plmn_height">
<ImageView android:id="@id/settings_launch_button" android:background="@drawable/tw_quickpanel_icon_settings_bg" android:focusable="true" android:layout_width="@dimen/status_bar_expanded_setting_width" android:layout_height="fill_parent" android:src="@drawable/tw_quickpanel_icon_settings" android:scaleType="center" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:contentDescription="@string/accessibility_settings_button" />
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/tw_quick_panel_plnm_setting_dv" android:layout_toLeftOf="@id/settings_launch_button" android:layout_centerVertical="true" />
<com.android.systemui.statusbar.policy.DateView android:textSize="@dimen/status_bar_expanded_date_text_size" android:textColor="#1589d7" android:id="@id/date" android:paddingRight="12.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/settings_launch_button" android:layout_centerVertical="true" />
<com.android.systemui.statusbar.phone.CarrierLabel android:textSize="@dimen/status_bar_expanded_plmn_text_size" android:textColor="#1589d7" android:ellipsize="marquee" android:paddingLeft="11.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/date" android:layout_alignParentLeft="true" android:layout_centerVertical="true" />
</RelativeLayout>

also das ist der block den ich eigentlich komplett weg haben will wenn ich ihn lösche dann hängt sich meine oberfläche auf und es geh nichts mehr

hier sind enthalten der einstellungsbutton die carrier und das datum und helligkeit was seit dem update auch dabei ist

oder wenigstens bei carrier meinen namen also das datum und der einstellungsbutton kann bleiben ist garnicht so schlimm aber das mit der helligkeit ist echt nervig und wenn ich auf 0.1dip mach sieht man einen kleinen streifen und 0.0dip darf man meines wissen nach nicht machen habs aber noch nicht probiert
 
Zuletzt bearbeitet:
ich mach bei allem 0.0dip, wo ist das problem? wer sagt du "darfst" das nicht machen? Dine Eltern? Samsung? hmm...
Einfach die oberste height vom Relative_Layout auf 0.0 und gut is. Genau das läuft momentan bei mir.
Wenn das auch ned geht, dann nimm nur die compilierte xml und schieb sie in deine originale SystemUI.apk hinein.
 
  • Danke
Reaktionen: Vic_
vielen dank hat geklappt noch ne frage wie kann ich die icons der batterie ändern weil alle batterieicons wo ich finden konnte habe ich geändert aber es tut sich nichts am handy
 
die findest du in \res\drawable-xhdpi, da musst du alle ersetzen, dann sollte das auch klappen. bedenke dass die bezeichnung genau übereinstimmen muss (kann von ROM zu ROmM unterschiednlich benannt sein) und natürlich alle in png.

bei samy roms heissen die üblicherweise "stat_sys_battery_0.png", etc...
 
  • Danke
Reaktionen: Vic_
YEEEAH cool danke an alle Leute ich hoff ich hab bei jedem danke gedrückt

endlich alles geklappt man sieht des geil aus :))) danke
 
Bei mir geht es nicht...
beim kompilieren entsteht zwar ein Ordner namens "build" mit dem verzeichnis "apk" aber der ist komplett leer..
wohhhaaa.... ich checks einfach nicht!

-.-
 

Anhänge

  • problem1.jpg
    problem1.jpg
    41 KB · Aufrufe: 241
  • problem2.jpg
    problem2.jpg
    128,6 KB · Aufrufe: 259
hast du diese fehlermeldungen auch, wenn du die apk nur decompilierst und wieder compilierst? wenn nicht, hast du inenrhalb der xml's "müll" geschrieben.
 
Kiray1982 schrieb:
hast du diese fehlermeldungen auch, wenn du die apk nur decompilierst und wieder compilierst? wenn nicht, hast du inenrhalb der xml's "müll" geschrieben.

Teste es gerade...
was hat das mit der classes.dex auf sich? Kann/Muss ich die Datei entfernen?

NACHTRAG:
Liegt nicht an den xmls... der Fehler kommt & kommt...
 
Diesen Fehler hatte ich auch. Das liegt wohl oder übel an der Java Version die benutzt wird. Ich hab bei mir alle Javas runter geschmissen und dann die JDKs von Oracle geladen (Java 6 und 7) und danach ging es dann auch. (Hab das JDK auch mit Java FX oder wie das heisst installiert, also einfach das Komplettpaket.)

Links:
JDK 6
JDK 7
 
  • Danke
Reaktionen: Kiray1982
Kiray1982 schrieb:
How-To Simple De-Compile

1. apktool downloaden und entpacken
2. Phone mit dem PC verbinden
3. im apktool-Ordner "pull_framework.bat" klicken
4. "install_framework.bat" klicken
5. zu ändernde apk (z.b. MeineApk.apk) in den apktool-Ordner kopieren
5a. apk kopieren und umbenennen zu MeineApkorg.apk
5b. MeineApk.apk öffnen und classes.dex löschen

6. decompile:
ADB-Tools öffnen und folgenden Befehl eingeben: apktool d MeineApk.apk

7. Änderungen vornehmen im MeineApk-Ordner

8. compile:
ADB-Tools öffnen: apktool b -f -d MeineApk

9. Nun in den Ordner MeineApk/build wechseln, dort sind alle compilierten Einzeldateien enthalten, diese manuell in die originale MeineApkorg.apk kopieren.
(value-ordner befinden sich in der ressource.arsc)

10. Leer CWM.zip öffnen und neue apk in das entsprechende Verzeichnis kopieren

11. Zip auf die SD-Karte kopieren und flashen
update:
classes.dex muss ned gelöscht werden, wenn beim decompilieren der tag -s hinzugefügt wird.
Quelle: apktool

Bsp: ...\apktool d -s MeineApk.apk

Der ursprüngliche Beitrag von 20:33 Uhr wurde um 20:37 Uhr ergänzt:

Spider1996 schrieb:
Ich hab bei mir alle Javas runter geschmissen und dann die JDKs von Oracle geladen (Java 6 und 7) und danach ging es dann auch.

Die Idee ist gut mit dem JDK, habe diese auch schon drauf gehabt, dennoch spinnt swiftkey rum beim compilieren. Als hätten sie zum Schutz (da lizenspflichtige app) "fehler" mit eingebaut.
 
  • Danke
Reaktionen: dogg
danke für den hinweis, wär ich nicht selber drauf gekommen :)
 
Da ja seid etwas längerer Zeit nun Jelly Bean da ist (also eine Samsung Version) wollte ich mal Fragen wie es ist mit dem ausblenden der Toggles und der Brideness Bar. Hat das unter Jelly Bean schon wer geschafft? Wenn ich die "selben" Sachen abänder wie die von ICS sind die Toggles zwar weg aber der Platz ist dann einfach ungenutzt und wie einfach ein schwarzer Balken.
 
Dann musst du vermutlich noch den background tag entfernen. die toggles sind ja nicht auf dem expanded angelegt sondern auf einem eigenen background. deshalb werden die auch nicht transparent, wenn man zB den expanded background ändert.

müsstest rausfinden welcher tag für den background der toggles ist. weiss das auch grade nicht, müsste auch suchen :)

aber kiray wird dir da bestimmt helfen können, er weiss (fast) alles.

wegen dem brightness slider kann ich auch nicht helfen, hab mich da auch noch nicht eingearbeitet, sollte aber funktionieren (auch unter jb), da es raubkatze bereits gemacht hat.

kannst ihm ja mal ne pn schicken, er hilft gerne :)

HIER findest du seine JB themes/mods
 
  • Danke
Reaktionen: Spider1996
hätte ich stock drauf hätte ich gerne nachgeschaut aber das wäre mir jetzt zu umständlich^^

aber such die background tags und entfern sie oder setz die auf 0.0dip denn sonst kann es zu compile fehler kommen beim entfernen^^
 
  • Danke
Reaktionen: Spider1996
Genauso, hab auch alles auf 0.0dip gesetzt, egal ob sammy oder cm. Bei transparent gemoddeten background hab ich bei quick-toggels einfach nen android:background-tag hinzugefügt. Hat sich eigentlich zu ICS nicht sooo viel geändert.

Gesendet von meinem Transformer TF101 mit Tapatalk 2
 
  • Danke
Reaktionen: Spider1996
Hm könntet ihr sagen, was man da ungefähr abändern muss? Wenn ich immer etwas zum ersten mal mache tuhe ich mich immer schwer auch wenn es einfach ist.

Müsste ja dann so weit in der tw_status_bar_expandet sein:
Code:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout android:id="@id/notification_panel" android:background="@drawable/notification_panel_bg" android:paddingTop="@dimen/notification_panel_padding_top" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginLeft="@dimen/notification_panel_margin_left"
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
    <FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="@dimen/close_handle_underlap">
        <include android:layout_width="fill_parent" android:layout_height="@dimen/tw_notification_panel_header_height" layout="@layout/tw_status_bar_expanded_header" />
        <HorizontalScrollView android:id="@id/quicksetting_scroller" android:scrollbars="none" android:layout_width="wrap_content" android:layout_height="@dimen/quick_setting_button_height" android:layout_marginTop="@dimen/tw_notification_panel_header_height">
            <com.android.systemui.statusbar.policy.quicksetting.QuickSettingPanel android:orientation="horizontal" android:id="@id/quicksetting_container" android:layout_width="wrap_content" android:layout_height="0.0dip" android:divider="@drawable/tw_black_bg" android:showDividers="middle" />
        </HorizontalScrollView>
        <LinearLayout android:orientation="vertical" android:id="@id/brightness_controller" android:background="#ff000000" android:layout_width="fill_parent" android:layout_height="56.0dip" android:layout_marginTop="@dimen/notification_panel_quicksettingbtn_height">
            <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="55.0dip">
                <ImageView android:id="@id/brightness_icon" android:clickable="true" android:layout_width="25.0dip" android:layout_height="fill_parent" android:layout_marginLeft="13.0dip" android:src="@drawable/ic_sysbar_brightness" android:contentDescription="@string/accessibility_brightness_icon" />
                <com.android.systemui.statusbar.policy.ToggleSlider android:id="@id/brightness" android:layout_width="fill_parent" android:layout_height="0.1dip" systemui:text="@string/status_bar_settings_auto_brightness_label" />
            </LinearLayout>
            <View android:background="#ff091a24" android:layout_width="fill_parent" android:layout_height="1.0dip" />
        </LinearLayout>
        <ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginTop="@dimen/notification_panel_notification_top_margin" android:overScrollMode="ifContentScrolls">
            <LinearLayout android:orientation="vertical" android:id="@id/scrollCart" android:layout_width="fill_parent" android:layout_height="wrap_content">
                <LinearLayout android:orientation="vertical" android:id="@id/noNotificationsTitle" android:focusable="true" android:layout_width="fill_parent" android:layout_height="wrap_content">
                    <TextView android:textSize="@dimen/status_bar_expanded_notification_category_text_size" android:textStyle="bold" android:textColor="@color/notification_category_color" android:gravity="left|center" android:id="@id/noNotificationsText" android:paddingLeft="11.0dip" android:layout_width="180.0dip" android:layout_height="@dimen/status_bar_expanded_notification_category_height" android:text="@string/status_bar_no_notifications_title" />
                </LinearLayout>
                <LinearLayout android:orientation="vertical" android:id="@id/onGoingCart" android:background="#ff293945" android:focusable="true" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="@dimen/status_bar_expanded_notification_category_height">
                    <TextView android:textSize="@dimen/status_bar_expanded_notification_category_text_size" android:textStyle="bold" android:textColor="@color/notification_category_color" android:gravity="left|center" android:id="@id/onGoingNotificationText" android:paddingLeft="11.0dip" android:layout_width="180.0dip" android:layout_height="fill_parent" android:text="@string/status_bar_ongoing_events_title" />
                </LinearLayout>
                <com.android.systemui.statusbar.policy.NotificationRowLayout android:id="@id/onGoingItems" android:layout_width="fill_parent" android:layout_height="wrap_content" systemui:rowHeight="@dimen/tw_notification_row_min_height" />
                <LinearLayout android:orientation="vertical" android:id="@id/notificationCart" android:background="#ff293945" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="@dimen/status_bar_expanded_notification_category_height">
                    <RelativeLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content">
                        <TextView android:textSize="@dimen/status_bar_expanded_notification_category_text_size" android:textStyle="bold" android:textColor="@color/notification_category_color" android:gravity="left|center" android:id="@id/latestNotificationText" android:paddingLeft="11.0dip" android:layout_width="180.0dip" android:layout_height="fill_parent" android:text="@string/status_bar_latest_events_title" android:layout_alignParentLeft="true" />
                        <TextView android:textSize="@dimen/status_bar_expanded_notification_clear_button_text_size" android:textColor="@color/tw_status_bar_clear_btn_text" android:gravity="center" android:id="@id/clear_all_button" android:background="@drawable/tw_btn_default_small" android:padding="0.100000024dip" android:focusable="true" android:clickable="true" android:layout_width="@dimen/status_bar_expanded_clear_button_width" android:layout_height="fill_parent" android:layout_marginRight="4.0dip" android:text="@string/status_bar_clear_all_button" android:layout_alignParentRight="true" android:contentDescription="@string/accessibility_clear_all" />
                    </RelativeLayout>
                </LinearLayout>
                <com.android.systemui.statusbar.policy.NotificationRowLayout android:id="@id/notificationItems" android:layout_width="fill_parent" android:layout_height="wrap_content" systemui:rowHeight="@dimen/tw_notification_row_min_height" />
                <com.android.systemui.statusbar.policy.NotificationRowLayout android:id="@id/latestItems" android:layout_width="fill_parent" android:layout_height="wrap_content" systemui:rowHeight="@dimen/tw_notification_row_min_height" />
            </LinearLayout>
        </ScrollView>
    </FrameLayout>
    <com.android.systemui.statusbar.phone.CloseDragHandle android:layout_gravity="bottom" android:orientation="vertical" android:id="@id/close" android:layout_width="fill_parent" android:layout_height="@dimen/tw_close_handle_height">
        <RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent">
            <ImageView android:layout_gravity="bottom" android:layout_width="fill_parent" android:layout_height="@dimen/tw_close_handle_height" android:src="@drawable/tw_status_bar_close" android:scaleType="fitXY" />
            <TextView android:textAppearance="@style/TextAppearance.StatusBar.Expanded.Network" android:textSize="16.0sp" android:gravity="center" android:layout_gravity="bottom" android:id="@id/carrier_label" android:layout_width="fill_parent" android:layout_height="@dimen/tw_close_handle_height" android:layout_marginBottom="10.0dip" />
        </RelativeLayout>
    </com.android.systemui.statusbar.phone.CloseDragHandle>
</FrameLayout>

Oder steht es eventuell auch in der tw_status_bar_toggle_slider?
Code:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <LinearLayout android:orientation="horizontal" android:id="@id/auto_brightness_group" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true">
        <CheckBox android:id="@id/toggle" android:clickable="false" android:layout_width="30.0dip" android:layout_height="fill_parent" android:layout_centerVertical="true" android:contentDescription="@string/status_bar_settings_auto_brightness_label" />
        <TextView android:textSize="15.0dip" android:textColor="#ffd7d7d7" android:gravity="center" android:id="@id/label" android:layout_width="46.0dip" android:layout_height="fill_parent" android:layout_marginLeft="0.0dip" android:layout_marginRight="2.0dip" android:singleLine="false" android:layout_alignParentRight="true" android:layout_centerVertical="true" />
    </LinearLayout>
    <SeekBar android:id="@id/slider" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_toLeftOf="@id/auto_brightness_group" android:layout_alignParentLeft="true" android:layout_centerVertical="true" />
</RelativeLayout>
Tut mir leid wenn das jetzt ne dumme Frage ist aber ich hab da eben noch nicht so den Durchblick. Bitte aber auch nicht jetzt die zu ändernen Dateien fertig compiled hochladen, so lern ich da ja nichts. ;)
 
Zuletzt bearbeitet:
Spoiler bitte, ist ja grausam am phone.

Gesendet von meinem GT-I9300 mit Tapatalk 2
 
Sry für das späte Feedback, genieße die Ruhe in Zeeland.

Schau einfach, das du den ersten horizontalscrollview auf android:layout_height="0.0dip" setzt. Damit würdest die quick-settings deaktivieren.
Kommende Zeile startet ein linear mit id brightness irgendwie, da einfach die height auf 0.0 stzen um den brightness-slider auch zu "deaktivieren"

Im grunde, einfach entsprechende height auf 0.0 setzen. Machmal gibts Gruppen, dann solltest diese (auch) ändern.

Gesendet von meinem Transformer TF101 mit Tapatalk 2
 
Zuletzt bearbeitet:
Ist ja voll ok das nicht immer alle sofort springen müssen wenn jemand etwas schreibt. Das Forum ist ja am nächsten Tag auch noch da. ;)

Hab jetzt mal so weit alles abgeändert was mit der Layout höhe zu tun hat (Oder gabs da noch irgendetwas, was ich übersehen habe bzw als "nicht dazu gehörend" eingeordnet habe?):

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout android:id="@id/notification_panel" android:background="@drawable/back" android:paddingTop="@dimen/notification_panel_padding_top" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginLeft="@dimen/notification_panel_margin_left"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
<FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="@dimen/close_handle_underlap">
<include android:layout_width="fill_parent" android:layout_height="@dimen/tw_notification_panel_header_height" layout="@layout/tw_status_bar_expanded_header" />
<HorizontalScrollView android:id="@id/quicksetting_scroller" android:visibility="gone" android:scrollbars="none" android:layout_width="wrap_content" android:layout_height="0.0dip" android:layout_marginTop="@dimen/tw_notification_panel_header_height">
<com.android.systemui.statusbar.policy.quicksetting.QuickSettingPanel android:orientation="horizontal" android:id="@id/quicksetting_container" android:layout_width="wrap_content" android:layout_height="0.0dip" android:divider="@drawable/tw_black_bg" android:showDividers="middle" />
</HorizontalScrollView>
<LinearLayout android:orientation="vertical" android:id="@id/brightness_controller" android:background="#00ffffff" android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_marginTop="@dimen/notification_panel_quicksettingbtn_height">
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="0.0dip">
<ImageView android:id="@id/brightness_icon" android:clickable="true" android:layout_width="25.0dip" android:layout_height="0.0dip" android:layout_marginLeft="13.0dip" android:src="@drawable/ic_sysbar_brightness" android:contentDescription="@string/accessibility_brightness_icon" />
<com.android.systemui.statusbar.policy.ToggleSlider android:id="@id/brightness" android:layout_width="fill_parent" android:layout_height="0.0dip" systemui:text="@string/status_bar_settings_auto_brightness_label" />
</LinearLayout>
<View android:background="#ff000000" android:layout_width="fill_parent" android:layout_height="0.20000005dip" />
</LinearLayout>
<ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginTop="@dimen/notification_panel_notification_top_margin" android:overScrollMode="ifContentScrolls">
<LinearLayout android:orientation="vertical" android:id="@id/scrollCart" android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout android:orientation="vertical" android:id="@id/noNotificationsTitle" android:layout_width="fill_parent" android:layout_height="wrap_content">
<TextView android:textSize="@dimen/status_bar_expanded_notification_category_text_size" android:textStyle="bold" android:textColor="@color/notification_category_color" android:gravity="left|center" android:id="@id/noNotificationsText" android:paddingLeft="11.0dip" android:layout_width="fill_parent" android:layout_height="@dimen/status_bar_expanded_notification_category_height" android:text="@string/status_bar_no_notifications_title" />
</LinearLayout>
<LinearLayout android:orientation="vertical" android:id="@id/onGoingCart" android:background="#00ffffff" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:textSize="@dimen/status_bar_expanded_notification_category_text_size" android:textStyle="bold" android:textColor="#ffd7d7d7" android:gravity="left|center" android:id="@id/onGoingNotificationText" android:paddingLeft="11.0dip" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="fill_parent" android:text="@string/status_bar_ongoing_events_title" />
</LinearLayout>
<com.android.systemui.statusbar.policy.NotificationRowLayout android:id="@id/onGoingItems" android:layout_width="fill_parent" android:layout_height="wrap_content" systemui:rowHeight="@dimen/tw_notification_row_min_height" />
<LinearLayout android:orientation="horizontal" android:id="@id/notificationCart" android:background="#00ffffff" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent">
<RelativeLayout android:orientation="horizontal" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="wrap_content">
<TextView android:textSize="@dimen/status_bar_expanded_notification_category_text_size" android:textStyle="bold" android:textColor="#ffd7d7d7" android:gravity="left|center" android:id="@id/latestNotificationText" android:paddingLeft="11.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:text="@string/status_bar_latest_events_title" android:layout_alignParentLeft="true" />
<ImageView android:layout_width="wrap_content" android:layout_height="18.0dip" android:src="@drawable/tw_quick_panel_plnm_setting_dv" android:layout_toLeftOf="@id/clear_all_button" android:layout_centerVertical="true" />
<TextView android:textSize="@dimen/status_bar_expanded_notification_clear_button_text_size" android:textColor="#ffd7d7d7" android:gravity="center" android:id="@id/clear_all_button" android:background="#00ffffff" android:padding="0.100000024dip" android:focusable="true" android:clickable="true" android:layout_width="@dimen/status_bar_expanded_clear_button_width" android:layout_height="fill_parent" android:layout_marginRight="4.0dip" android:text="@string/status_bar_clear_all_button" android:layout_alignParentRight="true" android:contentDescription="@string/accessibility_clear_all" />
</RelativeLayout>
</LinearLayout>
<com.android.systemui.statusbar.policy.NotificationRowLayout android:id="@id/notificationItems" android:layout_width="fill_parent" android:layout_height="wrap_content" systemui:rowHeight="@dimen/tw_notification_row_min_height" />
<com.android.systemui.statusbar.policy.NotificationRowLayout android:id="@id/latestItems" android:layout_width="fill_parent" android:layout_height="wrap_content" systemui:rowHeight="@dimen/tw_notification_row_min_height" />
</LinearLayout>
</ScrollView>
</FrameLayout>
<com.android.systemui.statusbar.phone.CloseDragHandle android:layout_gravity="bottom" android:orientation="vertical" android:id="@id/close" android:layout_width="fill_parent" android:layout_height="@dimen/tw_close_handle_height">
<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:layout_gravity="bottom" android:layout_width="fill_parent" android:layout_height="@dimen/tw_close_handle_height" android:src="@drawable/tw_status_bar_close" android:scaleType="fitXY" />
<TextView android:textAppearance="@style/TextAppearance.StatusBar.Expanded.Network" android:gravity="center" android:layout_gravity="bottom" android:id="@id/carrier_label" android:layout_width="fill_parent" android:layout_height="@dimen/tw_close_handle_height" android:layout_marginBottom="5.0dip" />
</RelativeLayout>
</com.android.systemui.statusbar.phone.CloseDragHandle>
</FrameLayout>

Und ich komme immer auf so etwas wie in diesem Bild.

Screenshot_2012-08-30-19-34-08.png
 

Ähnliche Themen

nominator2204
Antworten
1
Aufrufe
1.010
sventehf
sventehf
M
Antworten
6
Aufrufe
2.395
Marvis
M
nobody573
Antworten
25
Aufrufe
2.538
nobody573
nobody573
Zurück
Oben Unten