• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root ( Port ) Galaxy 1.6 on the Behold 2 Final

Okay got it..

snap20100412_190522.png

Used ShootMe for the screenshot
 
Hmm, all the other stuff is good but it seems that the clock is still dark..

let me check into that!

I double checked the files. The actual CLOCK font color settings is located in status_bar.xml. The values were changed properly.
Make sure you pushed the framework-res.apk properly.

<com.android.server.status.TickerView
android:id="@android:010201D5"
android:paddingTop="2.0dip"
android:paddingRight="10.0dip"
android:layout_width="0.0dip"
android:layout_height="-2"
android:layout_weight="1.0"
>
<TextView
android:textColor="#FFFFFFFF"
android:layout_width="-1"
android:layout_height="-2"
android:singleLine="true"
>
</TextView>
<TextView
android:textColor="#FFFFFFFF"
android:layout_width="-1"
android:layout_height="-2"
android:singleLine="true"
>
</TextView>
</com.android.server.status.TickerView>
</LinearLayout>
<com.android.server.status.DateView
android:textSize="16.0sp"
android:textStyle="0x00000001"
android:textColor="#FFFFFFFF"
android:gravity="0x00000013"
android:id="@android:01020058"
android:background="@android:01080299"
android:paddingLeft="6.0px"
android:paddingRight="6.0px"
android:layout_width="-2"
android:layout_height="-1"
android:singleLine="true"
>
</com.android.server.status.DateView>
 
Whenever I remove the services.odex file, the phone won't reboot. Is there a certain way (or order) to do this?

If I don't do it, the clock is still black.
 
Simply replacing the services.jar and rebooting should be enough, but i think you can just rm the odex file and then pull the battery to reboot.
 
Simply replacing the services.jar and rebooting should be enough, but i think you can just rm the odex file and then pull the battery to reboot.

What I meant was, when I rm it, the phone wont boot anymore. lol But yeah, the clock is still black and I've tried it 4 times on clean installs.
 
Hmm, thats not good. The reason why i thought to delete the odex file is because i used a Deodexed services.jar file with the dex file inside.

Thanks for letting me know about the no boot!

my suspicion is that its not loading the new values from the system.jar.
 
You realize HTML font color codes are only 6 characters right? #FFFFFFFF isn't valid. It would have to be #FFFFFF

Take your finger OFF the F key. Lmao.
 
You realize HTML font color codes are only 6 characters right? #FFFFFFFF isn't valid. It would have to be #FFFFFF

Take your finger OFF the F key. Lmao.


LOL, i forgot that they start with FF to begin with!

No wait, that is right, the first two FF starts the value and 2nd FF specifies no transparency.

The files were edited right.
 
here is an example

adb push test.txt /sdcard/

this will send a file from your computer called test.txt to the /sdcard location on android
 
Back
Top Bottom