Its not an image, its a transparency value in keyguard_screen_unlock_portrait.xml in res/layout in framework-res.apk.
change:
Code:
<com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient android:gravity="center_horizontal" android:orientation="vertical" android:background="#[COLOR=Red]70000000[/COLOR]" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
to
Code:
<com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient android:gravity="center_horizontal" android:orientation="vertical" android:background="#[COLOR=Red]00000000[/COLOR]" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
May have to do the same for keyguard_unlock_landscape.xml if you have landscape unlock screens
If it's not that xml, which it may not be, look in the other keyguard xmls for transparency values that aren't ff or 00.
---------- Post added at 08:46 PM ---------- Previous post was at 08:38 PM ----------
My bad, I think it is zz_moto_gradient_bg.png in drawables-hdpi.
Found this to lead me there:
Code:
<com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient android:gravity="center_horizontal" android:orientation="vertical" android:background="@drawable/zz_moto_gradient_bg" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">