2011年2月12日土曜日

Milestone2 framework-res.apk edits

Milestone2のブラジル版FW、MILA2_U6_3.12.0のキャリア情報表示の所が変な感じだったのでframeworkを書き換えた。


status_bar_expanded.xml

<TextView android:textAppearance="?textAppearanceLarge" android:textColor="?textColorSecondaryInverse" android:layout_gravity="center_vertical" android:id="@id/spnLabel" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="0dip" />

<TextView android:textAppearance="?textAppearanceLarge" android:textColor="?textColorSecondaryInverse" android:layout_gravity="center_vertical" android:id="@id/cbLabel" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="0dip" />


UK版FWは@id/plmnLabel、@id/spnLabelの二つのみ表示なのだがブラジル版はさらに@id/cbLabelも表示されてる。
@id/plmnLabelだけあれば十分なので他二つをandroid:layout_height="0dip"とし、表示されないようにした。