Monday, May 30, 2016

(HOW-TO) (MM) S7 Power Menu Mod with Blur background

1. Edit Build.prop
1) Remove original ones
ro.build.scafe=americano
ro.build.scafe.size=short
ro.build.scafe.shot=single
ro.build.scafe.cream=white
ro.build.scafe.version=2015A

2) Then add below
ro.build.scafe.version=2016A
ro.build.scafe.size=short
ro.build.scafe.shot=double
ro.build.scafe.cream=white

2. Edit framework-res.apk
Decompile your framework-res.apk first

1) Change text color from black to white
http://ift.tt/1smCoIn

Before
Code:

<color name="tw_global_action_messagetext_textcolor">#ff000000</color>
<color name="tw_global_action_statustext_textcolor">#ff6b6f72</color>

After
Code:

<color name="tw_global_action_messagetext_textcolor">#fffafafa</color>
<color name="tw_global_action_statustext_textcolor">#ffc3c3c3</color>

2) Add Blur on Background (Part 1/2)

a) http://ift.tt/1OXQHI1

add blue line
Code:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" android:id="@id/main_root_layout" android:layout_width="fill_parent" android:layout_height="fill_parent"
  xmlns:android="http://ift.tt/IqUx8K;
    <LinearLayout android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_weight="1.0">
        <FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent">
            <com.acer.incallui.BlurImageView android:id="@id/backgroundImageView" android:layout_width="fill_parent" android:layout_height="fill_parent" android:scaleType="centerCrop" />
            <ScrollView android:id="@id/global_actions_scrollview" android:scrollbars="none" android:layout_width="fill_parent" android:layout_height="fill_parent" android:fillViewport="true" android:importantForAccessibility="no">
                <LinearLayout android:gravity="center" android:orientation="vertical" android:id="@id/global_actions_bg" android:layout_width="fill_parent" android:layout_height="wrap_content" android:soundEffectsEnabled="false" />
            </ScrollView>

b) Add below id to http://ift.tt/1smCNuw
<item type="id" name="backgroundImageView">false</item>
c) Complie

3.Edit framework.jar
Add Blur on Background (Part 2/2)
1) Decompile classes3.dex of your framework.jar then add attached smali
2) Compile

Attached Thumbnails
Click image for larger version Name: Screenshot_20160530-204118.jpg Views: N/A Size: 63.8 KB ID: 3766845  
Attached Files
File Type: zip add.zip - [Click for QR Code] (4.3 KB)


from xda-developers http://ift.tt/1smDcNq
via IFTTT

No comments:

Post a Comment