[COLLECTION] S8 New Apps (Project Dream) [UPDT 06/04/17]

Ilker1234

Senior Member
May 23, 2016
101
29
28
Tuymen
You cant convert them in Windows because sammy haves his own codec for qmg so the only way is convert them from the phone (I personally rename .qmg to .png then use QuickPic for resave the file and convert it)

---------- Post added at 11:46 AM ---------- Previous post was at 11:42 AM ----------



I cant help you because it changes from phone to phone. All I can say is check mipmap and drawable folders

---------- Post added at 11:49 AM ---------- Previous post was at 11:46 AM ----------



Install Samsung Frameworks in Tickle.
I installed Framework,but the error remained
 

Ilker1234

Senior Member
May 23, 2016
101
29
28
Tuymen
You cant convert them in Windows because sammy haves his own codec for qmg so the only way is convert them from the phone (I personally rename .qmg to .png then use QuickPic for resave the file and convert it)

---------- Post added at 11:46 AM ---------- Previous post was at 11:42 AM ----------



I cant help you because it changes from phone to phone. All I can say is check mipmap and drawable folders

---------- Post added at 11:49 AM ---------- Previous post was at 11:46 AM ----------



Install Samsung Frameworks in Tickle.
Hello,How to fix this?
 

Attachments

BlackMesa123

Senior Member
Aug 29, 2015
1,682
3,266
153
Adrano
www.facebook.com
Galaxy S8 Lockscreen Clock Theme

Can you share a guide on how to edit systemUi in order to make lockscreen clock like S8?
So this is only for mm, for nougat Idk what xml and strings there are but it should be almost the same, btw let's start.
Decompile SystemUI and open /res/layout/sec_keyguard_clock_single_view.xml, then from this:
Code:
    <LinearLayout android:gravity="center_horizontal" android:orientation="vertical" android:id="@id/keyguard_sec_clock_single_clock_date_wrapper" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <com.android.keyguard.status.KeyguardTextClock android:textSize="@dimen/kg_singleclock_time_text_size_normal" android:textColor="@color/theme_textclock_color" android:gravity="center" android:id="@id/keyguard_single_clock_time" android:focusable="false" android:clickable="false" android:layout_width="@dimen/kg_singleclock_time_width" android:layout_height="wrap_content" android:minHeight="@dimen/kg_singleclock_time_height" android:fontFamily="clock2016" android:format12Hour="@string/status_view_12_hours_format" android:format24Hour="@string/status_view_24_hours_format" style="@style/keyguard_clock_weather_text_shadow" />
        <com.android.keyguard.status.KeyguardDateView android:textSize="@dimen/kg_singleclock_date_text_size" android:textColor="@color/theme_clock_date_color" android:gravity="center_horizontal" android:id="@id/keyguard_single_clock_date" android:focusable="false" android:clickable="false" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="1.0dip" android:minHeight="@dimen/kg_singleclock_date_height" android:fontFamily="sans-serif" style="@style/keyguard_clock_weather_text_shadow" />
    </LinearLayout>
To this:
Code:
    <LinearLayout android:gravity="center_horizontal" android:orientation="vertical" android:id="@id/keyguard_sec_clock_single_clock_date_wrapper" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <com.android.keyguard.status.KeyguardTextClock android:textSize="@dimen/kg_singleclock_time_text_size_normal" android:textColor="@color/theme_textclock_color" android:gravity="center" android:id="@id/keyguard_single_clock_time" android:focusable="false" android:clickable="false" android:layout_width="@dimen/kg_singleclock_time_width" android:layout_height="wrap_content" android:minHeight="@dimen/kg_singleclock_time_height" [COLOR=red]android:fontFamily="clock2017L"[/COLOR] android:format12Hour="@string/status_view_12_hours_format" android:format24Hour="@string/status_view_24_hours_format" style="@style/keyguard_clock_weather_text_shadow" />
        [COLOR=red]<com.android.keyguard.status.KeyguardTextClock android:textSize="@dimen/kg_singleclock_time_text_size_normal" android:textColor="@color/theme_textclock_color" android:gravity="center" android:id="@id/keyguard_single_clock_time" android:focusable="false" android:clickable="false" android:layout_width="@dimen/kg_singleclock_time_width" android:layout_height="wrap_content" android:minHeight="@dimen/kg_singleclock_time_height" android:fontFamily="clock2017L" android:format12Hour="@string/status_view_minutes_format" android:format24Hour="@string/status_view_minutes_format" style="@style/keyguard_clock_weather_text_shadow" />[/COLOR]
        <com.android.keyguard.status.KeyguardDateView android:textSize="@dimen/kg_singleclock_date_text_size" android:textColor="@color/theme_clock_date_color" android:gravity="center_horizontal" android:id="@id/keyguard_single_clock_date" android:focusable="false" android:clickable="false" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="1.0dip" android:minHeight="@dimen/kg_singleclock_date_height" [COLOR=red]android:fontFamily="sec-roboto-condensed" android:textAllCaps="true" android:textStyle="bold"[/COLOR] style="@style/keyguard_clock_weather_text_shadow" />
    </LinearLayout>
After that go to /res/values/strings.xml and change this:
Code:
    <string name="status_view_12_hours_format">h:mm</string>
    <string name="status_view_24_hours_format">kk:mm</string>
To this:
Code:
    <string name="status_view_12_hours_format">[COLOR=red]h[/COLOR]</string>
    <string name="status_view_24_hours_format">[COLOR=red]kk[/COLOR]</string>
    [COLOR=red]<string name="status_view_minutes_format">mm</string>[/COLOR]
 

Attachments

joe210382

Senior Member
Mar 20, 2014
188
12
38
So this is only for mm, for nougat Idk what xml and strings there are but it should be almost the same, btw let's start.
Decompile SystemUI and open /res/layout/sec_keyguard_clock_single_view.xml, then from this:
Code:
    <LinearLayout android:gravity="center_horizontal" android:orientation="vertical" android:id="@id/keyguard_sec_clock_single_clock_date_wrapper" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <com.android.keyguard.status.KeyguardTextClock android:textSize="@dimen/kg_singleclock_time_text_size_normal" android:textColor="@color/theme_textclock_color" android:gravity="center" android:id="@id/keyguard_single_clock_time" android:focusable="false" android:clickable="false" android:layout_width="@dimen/kg_singleclock_time_width" android:layout_height="wrap_content" android:minHeight="@dimen/kg_singleclock_time_height" android:fontFamily="clock2016" android:format12Hour="@string/status_view_12_hours_format" android:format24Hour="@string/status_view_24_hours_format" style="@style/keyguard_clock_weather_text_shadow" />
        <com.android.keyguard.status.KeyguardDateView android:textSize="@dimen/kg_singleclock_date_text_size" android:textColor="@color/theme_clock_date_color" android:gravity="center_horizontal" android:id="@id/keyguard_single_clock_date" android:focusable="false" android:clickable="false" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="1.0dip" android:minHeight="@dimen/kg_singleclock_date_height" android:fontFamily="sans-serif" style="@style/keyguard_clock_weather_text_shadow" />
    </LinearLayout>
To this:
Code:
    <LinearLayout android:gravity="center_horizontal" android:orientation="vertical" android:id="@id/keyguard_sec_clock_single_clock_date_wrapper" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <com.android.keyguard.status.KeyguardTextClock android:textSize="@dimen/kg_singleclock_time_text_size_normal" android:textColor="@color/theme_textclock_color" android:gravity="center" android:id="@id/keyguard_single_clock_time" android:focusable="false" android:clickable="false" android:layout_width="@dimen/kg_singleclock_time_width" android:layout_height="wrap_content" android:minHeight="@dimen/kg_singleclock_time_height" [COLOR=red]android:fontFamily="clock2017L"[/COLOR] android:format12Hour="@string/status_view_12_hours_format" android:format24Hour="@string/status_view_24_hours_format" style="@style/keyguard_clock_weather_text_shadow" />
        [COLOR=red]<com.android.keyguard.status.KeyguardTextClock android:textSize="@dimen/kg_singleclock_time_text_size_normal" android:textColor="@color/theme_textclock_color" android:gravity="center" android:id="@id/keyguard_single_clock_time" android:focusable="false" android:clickable="false" android:layout_width="@dimen/kg_singleclock_time_width" android:layout_height="wrap_content" android:minHeight="@dimen/kg_singleclock_time_height" android:fontFamily="clock2017L" android:format12Hour="@string/status_view_minutes_format" android:format24Hour="@string/status_view_minutes_format" style="@style/keyguard_clock_weather_text_shadow" />[/COLOR]
        <com.android.keyguard.status.KeyguardDateView android:textSize="@dimen/kg_singleclock_date_text_size" android:textColor="@color/theme_clock_date_color" android:gravity="center_horizontal" android:id="@id/keyguard_single_clock_date" android:focusable="false" android:clickable="false" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="1.0dip" android:minHeight="@dimen/kg_singleclock_date_height" [COLOR=red]android:fontFamily="sec-roboto-condensed" android:textAllCaps="true" android:textStyle="bold"[/COLOR] style="@style/keyguard_clock_weather_text_shadow" />
    </LinearLayout>
After that go to /res/values/strings.xml and change this:
Code:
    <string name="status_view_12_hours_format">h:mm</string>
    <string name="status_view_24_hours_format">kk:mm</string>
To this:
Code:
    <string name="status_view_12_hours_format">[COLOR=red]h[/COLOR]</string>
    <string name="status_view_24_hours_format">[COLOR=red]kk[/COLOR]</string>
    [COLOR=red]<string name="status_view_minutes_format">mm</string>[/COLOR]
Sir do u got s8 font zip flash for all system not only for lockscreen and widget ...thx u
 

Ilker1234

Senior Member
May 23, 2016
101
29
28
Tuymen
So this is only for mm, for nougat Idk what xml and strings there are but it should be almost the same, btw let's start.
Decompile SystemUI and open /res/layout/sec_keyguard_clock_single_view.xml, then from this:
Code:
    <LinearLayout android:gravity="center_horizontal" android:orientation="vertical" android:id="@id/keyguard_sec_clock_single_clock_date_wrapper" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <com.android.keyguard.status.KeyguardTextClock android:textSize="@dimen/kg_singleclock_time_text_size_normal" android:textColor="@color/theme_textclock_color" android:gravity="center" android:id="@id/keyguard_single_clock_time" android:focusable="false" android:clickable="false" android:layout_width="@dimen/kg_singleclock_time_width" android:layout_height="wrap_content" android:minHeight="@dimen/kg_singleclock_time_height" android:fontFamily="clock2016" android:format12Hour="@string/status_view_12_hours_format" android:format24Hour="@string/status_view_24_hours_format" style="@style/keyguard_clock_weather_text_shadow" />
        <com.android.keyguard.status.KeyguardDateView android:textSize="@dimen/kg_singleclock_date_text_size" android:textColor="@color/theme_clock_date_color" android:gravity="center_horizontal" android:id="@id/keyguard_single_clock_date" android:focusable="false" android:clickable="false" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="1.0dip" android:minHeight="@dimen/kg_singleclock_date_height" android:fontFamily="sans-serif" style="@style/keyguard_clock_weather_text_shadow" />
    </LinearLayout>
To this:
Code:
    <LinearLayout android:gravity="center_horizontal" android:orientation="vertical" android:id="@id/keyguard_sec_clock_single_clock_date_wrapper" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <com.android.keyguard.status.KeyguardTextClock android:textSize="@dimen/kg_singleclock_time_text_size_normal" android:textColor="@color/theme_textclock_color" android:gravity="center" android:id="@id/keyguard_single_clock_time" android:focusable="false" android:clickable="false" android:layout_width="@dimen/kg_singleclock_time_width" android:layout_height="wrap_content" android:minHeight="@dimen/kg_singleclock_time_height" [COLOR=red]android:fontFamily="clock2017L"[/COLOR] android:format12Hour="@string/status_view_12_hours_format" android:format24Hour="@string/status_view_24_hours_format" style="@style/keyguard_clock_weather_text_shadow" />
        [COLOR=red]<com.android.keyguard.status.KeyguardTextClock android:textSize="@dimen/kg_singleclock_time_text_size_normal" android:textColor="@color/theme_textclock_color" android:gravity="center" android:id="@id/keyguard_single_clock_time" android:focusable="false" android:clickable="false" android:layout_width="@dimen/kg_singleclock_time_width" android:layout_height="wrap_content" android:minHeight="@dimen/kg_singleclock_time_height" android:fontFamily="clock2017L" android:format12Hour="@string/status_view_minutes_format" android:format24Hour="@string/status_view_minutes_format" style="@style/keyguard_clock_weather_text_shadow" />[/COLOR]
        <com.android.keyguard.status.KeyguardDateView android:textSize="@dimen/kg_singleclock_date_text_size" android:textColor="@color/theme_clock_date_color" android:gravity="center_horizontal" android:id="@id/keyguard_single_clock_date" android:focusable="false" android:clickable="false" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="1.0dip" android:minHeight="@dimen/kg_singleclock_date_height" [COLOR=red]android:fontFamily="sec-roboto-condensed" android:textAllCaps="true" android:textStyle="bold"[/COLOR] style="@style/keyguard_clock_weather_text_shadow" />
    </LinearLayout>
After that go to /res/values/strings.xml and change this:
Code:
    <string name="status_view_12_hours_format">h:mm</string>
    <string name="status_view_24_hours_format">kk:mm</string>
To this:
Code:
    <string name="status_view_12_hours_format">[COLOR=red]h[/COLOR]</string>
    <string name="status_view_24_hours_format">[COLOR=red]kk[/COLOR]</string>
    [COLOR=red]<string name="status_view_minutes_format">mm</string>[/COLOR]
Why
 

BlackMesa123

Senior Member
Aug 29, 2015
1,682
3,266
153
Adrano
www.facebook.com
I cant help you every time you get an error. That error means wrong frameworks in apktool so you have to delete it and install framework-res and samsung-framework-res. Please next time read the logs:silly:

---------- Post added at 07:53 AM ---------- Previous post was at 07:53 AM ----------

@BlackMesa123
Do u have Telegram Account ?
Yes, why?