Does anyone know what i need to put to make the below have its only heading so i can split different types up.
Code:
<?xml version="1.0" encoding="UTF-16" standalone="yes"?>
<Items>
<Item name="Help" group="[B]test[/B]" checked="true">
<Tip>Help</Tip>
<Guid type="P">76164568-f00e-11db-8314-0800200c9a66</Guid>
</Item>
</Items>
Code:
<?xml version="1.0" encoding="UTF-16" standalone="yes"?>
<Items>
<Item name="Adobe Reader LE" group="[B]System[/B]" checked="true">
<Tip>Adobe Reader LE</Tip>
<Guid type="p">820697b6-f803-45e4-9b4b-d38814a71fbc</Guid>
</Item>
</Items>
or am i missing something!!!
im working on a launcher app but have ran into a problem.
right now i am working on removing the title bar. in the res/values/ folder i have to create a styles.xml file containing this code: <?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme" parent="android:Theme">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
i put that code in but im getting an error on the last line saying: Premature end of line. Error parsing XML: element not found.
any ideas to why?
hello everybody
I have a problem
I want change my apk background but have trouble
i edit style.xml
original
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="RE_Main" parent="@*android:style/Theme.DeviceDefault.Light">
<style name="RE_Dialog" parent="@*android:style/Theme.DeviceDefault.Light.Dialog" />
</resources>
Change
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="RE_Main" parent="@*android:style/Theme.DeviceDefault.Light">
<item name="android:background">@drawable/semc</item>
</style>
<style name="RE_Dialog" parent="@*android:style/Theme.DeviceDefault.Light.Dialog" />
</resources>
Can not be used after changing
HI
I Want To Hide The Number Of An Incoming Screen Who Is Calling and Only Show The Name Of The Saved Contact. I Have De compiled LGContacts.apk,LGIncallUI.apk..
Can Anyone Help me telling Which FIle To Edit To Acheive This...
Azharkanorwala said:
HI
I Want To Hide The Number Of An Incoming Screen Who Is Calling and Only Show The Name Of The Saved Contact. I Have De compiled LGContacts.apk,LGIncallUI.apk..
Can Anyone Help me telling Which FIle To Edit To Acheive This...
Click to expand...
Click to collapse
which rom? if you have CloudyG3, in LGInCallUI.apk\res\layout\coverui_call_card_layout.xml
there is this line
Code:
<TextView android:ellipsize="end" android:gravity="center_horizontal" android:id="@id/callerNumber" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="1.0dip" android:singleLine="true" android:layout_below="@id/callerName" android:layout_centerHorizontal="true" style="@style/voicecall_cover_incall_phone_num" />
try to delete it or put 0.0dip in styles instead of 15.0dip, in this line
Code:
<style name="voicecall_cover_incall_phone_num">
<item name="android:textSize">[B][COLOR="Red"]15.0[/COLOR][/B]dip</item>
<item name="android:textStyle">normal</item>
<item name="android:textColor">#ffe6e6e6</item>
<item name="android:includeFontPadding">false</item>
<item name="android:shadowColor">#33000000</item>
<item name="android:shadowDx">2.0</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">4.0</item>
</style>
clearly, i don't know if it works. never tried
glfsd said:
which rom? if you have CloudyG3, in LGInCallUI.apk\res\layout\coverui_call_card_layout.xml
there is this line
Code:
<TextView android:ellipsize="end" android:gravity="center_horizontal" android:id="@id/callerNumber" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="1.0dip" android:singleLine="true" android:layout_below="@id/callerName" android:layout_centerHorizontal="true" style="@style/voicecall_cover_incall_phone_num" />
try to delete it or put 0.0dip in styles instead of 15.0dip, in this line
Code:
<style name="voicecall_cover_incall_phone_num">
<item name="android:textSize">[B][COLOR="Red"]15.0[/COLOR][/B]dip</item>
<item name="android:textStyle">normal</item>
<item name="android:textColor">#ffe6e6e6</item>
<item name="android:includeFontPadding">false</item>
<item name="android:shadowColor">#33000000</item>
<item name="android:shadowDx">2.0</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">4.0</item>
</style>
clearly, i don't know if it works. never tried
Click to expand...
Click to collapse
Thanks,I am on cloudy g2 2.2
I Want to know if the same can be applied to call log section,that only the names appear and not the number.
All,
steps to enable speed dial on Sony Xperia Z1 compact
Speeddial is enabled on D5503_14.4.A.0.157_R4C_RU
But disabled on D5503_14.4.A.0.157_Baltic
After I have copied "com.sonyericsson.android.socialphonebook-res.apk" to system/vendor/overlay folder I got speeddial with 99 positions.
This apk file must have the following files:
\res\values\bools.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="enable_speed_dial">true</bool>
</resources>
and \res\values\public.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<public type="bool" name="enable_speed_dial" id="0x7f020000" />
</resources>