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

Root [APP] Mms.apk (UPDATED NO CONTACT ID) (:

bll7

Member
i want to start off by saying most credit goes for ktb83, all i did was add "sticky note" and "bubbles" around the text, and added recepients to 200, and sms limit to 400 instead of 4 so now it wont convert to multimedia message but i think it looks really good, here are some screen shots!!(:

edit: added Mms_no_contactid.apk
 

Attachments

  • Mms_wood.apk
    Mms_wood.apk
    604.8 KB · Views: 97
  • mms_blue_yellow.apk
    mms_blue_yellow.apk
    600.3 KB · Views: 171
  • Mms_orange.apk
    Mms_orange.apk
    599.2 KB · Views: 103
  • Mms.blue_yellow.jpg
    Mms.blue_yellow.jpg
    28.3 KB · Views: 258
  • mms.orange.jpg
    mms.orange.jpg
    28 KB · Views: 188
  • unsigned-Mms_sticky_blue_purple.apk
    unsigned-Mms_sticky_blue_purple.apk
    599.2 KB · Views: 142
  • unsigned-Mms_sticky_Red_Blue.apk
    unsigned-Mms_sticky_Red_Blue.apk
    598.9 KB · Views: 149
  • blue_purple.jpg
    blue_purple.jpg
    39.9 KB · Views: 192
  • Red_blue.jpg
    Red_blue.jpg
    37.4 KB · Views: 176
  • Mms_No_ContactID.apk
    Mms_No_ContactID.apk
    605.6 KB · Views: 168
i want to start off by saying most credit goes for ktb83, all i did was add "sticky note" around the text, and added recepients to 200, and sms limit to 400 instead of 4 so now it wont convert to multimedia message but i think it looks really good, here is a screen enjoy!!

Tip: If you used APK Manager, check to make sure the Search feature (tap the menu button when on the screen which lists conversations) still works and doesn't force close when trying to select a search result. If you used one of the APKs I posted then it's possible that you might have avoided this issue. It was just something I noticed when editing the stock Mms.apk with APK Manager. APK Multi-Tool doesn't produce the same issue.
 
Tip: If you used APK Manager, check to make sure the Search feature (tap the menu button when on the screen which lists conversations) still works and doesn't force close when trying to select a search result. If you used one of the APKs I posted then it's possible that you might have avoided this issue. It was just something I noticed when editing the stock Mms.apk with APK Manager. APK Multi-Tool doesn't produce the same issue.

yes i to found this, one thing i can not get is the contact id to go away.. everytime i set them to 0.0dip the app force closes. Do you thing you can take a look at it? Thanks again for everything.
 
yes i to found this, one thing i can not get is the contact id to go away.. everytime i set them to 0.0dip the app force closes. Do you thing you can take a look at it? Thanks again for everything.

Are you referring to the name of the sender/recipient? You're trying to remove the "Me"-part in your example screenshot?
 
Are you referring to the name of the sender/recipient? You're trying to remove the "Me"-part in your example screenshot?

no i want to get rid of the contact picture. but only in the actually conversation where the bubbles are not on the coversation list.
edit: i have tried this;
but still no luck..

<android.widget.QuickContactBadge android:id="@id/avatar" android:layout_marginLeft="0.0px" android:layout_marginTop="0.0px" android:layout_marginRight="0.0px" android:layout_marginBottom="0.0px" style="?android:attr/quickContactBadgeStyleWindowSmall" />
<View android:layout_width="0.0px" android:layout_height="0.0px" android:layout_below="@id/avatar" />
 
no i want to get rid of the contact picture. but only in the actually conversation where the bubbles are not on the coversation list.

I don't know what you'll need to do to accomplish that. I have some ideas and it might require Smali editing, but I'm not interested in playing around with it soon. I'll let you know if I can find a solution.
 
I don't know what you'll need to do to accomplish that. I have some ideas and it might require Smali editing, but I'm not interested in playing around with it soon. I'll let you know if I can find a solution.

okay thank you
 
is there any way we can make a option in mms settings to choose bubble post it or that black bubble one? and choose if we want a white or black backround?
 
no i want to get rid of the contact picture. but only in the actually conversation where the bubbles are not on the coversation list.
edit: i have tried this;
but still no luck..

<android.widget.QuickContactBadge android:id="@id/avatar" android:layout_marginLeft="0.0px" android:layout_marginTop="0.0px" android:layout_marginRight="0.0px" android:layout_marginBottom="0.0px" style="?android:attr/quickContactBadgeStyleWindowSmall" />
<View android:layout_width="0.0px" android:layout_height="0.0px" android:layout_below="@id/avatar" />

You could try android:layout_height="1px" android:layout_width="1px"

I'm not sure if that needs to be on the View tag or the android.widget.QuickContactBadge tag. Let me know what you come up with.
 
still nothing... :/

If you had tried both suggestions I gave you, you would have already accomplished your goal. You just need to set those attributes on the correct XML tag:

<android.widget.QuickContactBadge android:id="@id/avatar" android:layout_width="0px" android:layout_height="0px" android:layout_marginLeft="0.0dip" android:layout_marginTop="5.0dip" android:layout_marginRight="5.0dip" android:layout_marginBottom="5.0dip" style="?android:attr/quickContactBadgeStyleWindowSmall" />

Just promise us that in the future you will not create multiple threads about the same thing. Thanks in advance.

Enjoy!
 
If you had tried both suggestions I gave you, you would have already accomplished your goal. You just need to set those attributes on the correct XML tag:

<android.widget.QuickContactBadge android:id="@id/avatar" android:layout_width="0px" android:layout_height="0px" android:layout_marginLeft="0.0dip" android:layout_marginTop="5.0dip" android:layout_marginRight="5.0dip" android:layout_marginBottom="5.0dip" style="?android:attr/quickContactBadgeStyleWindowSmall" />

Just promise us that in the future you will not create multiple threads about the same thing. Thanks in advance.

Enjoy!

i tried:
layout_width="0px" android:layout_height="0px"
layout_width="1px" android:layout_height="1px"
layout_width="0.0dip" android:layout_height="0.0dip"

neither of these worked..
 
i tried:
layout_width="0px" android:layout_height="0px"
layout_width="1px" android:layout_height="1px"
layout_width="0.0dip" android:layout_height="0.0dip"

neither of these worked..

Except you put them on the View tag. They need to go in the tag above that. I know it works, I made the mod to the bubble-style Mms.apk I made for you.
 
Except you put them on the View tag. They need to go in the tag above that. I know it works, I made the mod to the bubble-style Mms.apk I made for you.

i have done this in res/layout/conversation_list_item, and it still does not work:

<android.widget.QuickContactBadge android:id="@id/avatar" android:layout_width="0px" android:layout_height="0px" android:layout_marginLeft="0.0dip" android:layout_marginTop="5.0dip" android:layout_marginRight="5.0dip" android:layout_marginBottom="5.0dip" style="?android:attr/quickContactBadgeStyleWindowSmall" />
 
i have done this in res/layout/conversation_list_item, and it still does not work:

<android.widget.QuickContactBadge android:id="@id/avatar" android:layout_width="0px" android:layout_height="0px" android:layout_marginLeft="0.0dip" android:layout_marginTop="5.0dip" android:layout_marginRight="5.0dip" android:layout_marginBottom="5.0dip" style="?android:attr/quickContactBadgeStyleWindowSmall" />

You said you wanted to hide the avatar on the message bubble/post-it/etc. That means the change goes in /res/layout/message_list_item.xml.
 
any way u can a seeting to choose which one we want?
incuding all themes made?

While that is likely possible, in my opinion it's way more work than it's worth. Sorry, I'm not interested in trying. I would suggest you find one theme you like or just use a messaging app which was prebuilt to handle multiple themes.
 
While that is likely possible, in my opinion it's way more work than it's worth. Sorry, I'm not interested in trying. I would suggest you find one theme you like or just use a messaging app which was prebuilt to handle multiple themes.

ktb, i have a question im trying to change the smsTomms but it isnt working? here are the values i changed in res/xml/mms_config.xml

<int name="recipientLimit">200</int>
<int name="smsToMmsTextThreshold">200</int>
 
ktb, i have a question im trying to change the smsTomms but it isnt working? here are the values i changed in res/xml/mms_config.xml

<int name="recipientLimit">200</int>
<int name="smsToMmsTextThreshold">200</int>

That should work. What isn't working about it? Did you actually try to test the limits?

Try 100 instead?

Why do you need a 200 limit for those two variables? Are you spamming people?
 
That should work. What isn't working about it? Did you actually try to test the limits?

Try 100 instead?

Why do you need a 200 limit for those two variables? Are you spamming people?

it didnt work, i did test it as well, and no lol, me and my girlfriend have really long conversations and well it converts it too mms :/ going to try 100 will get back to you oh and mainly just the smsTomms is all i want..

edit: tried
<int name="recipientLimit">40</int>
<int name="smsToMmsTextThreshold">100</int>

still nothing.. it normally says <int name="smsToMmsTextThreshold">4</int>
but yet converts it after 5? :confused:
 
Back
Top Bottom