[android-developers] The conflict between ActionBar's overflow menu and the common layout ImageButton

2013-07-19 Thread chenyu xu
Our project is on android ics 4.04, everything is normal except the device without hardware menu key. In dialpad interface(DialpadFragment), in the case of without hardware menu key, there is small three dots button show in the right-lower corner, but the dial button which located the some

[android-developers] How do I analysis native crash log

2012-02-02 Thread chenyu xu
I have got a crash log, I can locate the source of call stack like below: 01-19 17:48:56.580 I/DEBUG ( 683): #00 pc 00011dee / system/lib/libc.so 01-19 17:48:56.580 I/DEBUG ( 683): #01 pc be1c / system/lib/libc.so I use addr2line to identify that it was memory

[android-developers] About Contacts sorting problem

2011-12-26 Thread chenyu xu
Hello All: My company's tester report a bug that the user create a new contact item whose 1st name is in Chinese , last name is in English, for example: First Name: 元璋 Last Name: Zhu. Then this item is sorted outside the A-Z order, after the Z group( in the case of sorting by first name).

[android-developers] Can I use some interfaces in framework?

2011-12-14 Thread chenyu xu
For example: I want to get the SIM card contacts storage information in Contacts app, I used IccPhoneBook interface like this below: try { IIccPhoneBook iccIpb = IIccPhoneBook.Stub.asInterface( ServiceManager.getService(simphonebook)); if (iccIpb !=

[android-developers] About SIM card storage information

2011-12-08 Thread chenyu xu
I want to get the storage information about SIM card in Contacts app, For example, show a dialog indicate that how many contacts has been used and how many contacts does the SIM card can storage. I found that in framework, the function loadFromEF in IccProvider.java, can get the capacity of the

[android-developers] About VCardComoser

2011-12-01 Thread chenyu xu
Hi All: I am reading and debuging Contacts source code now. But I am very confusing about ExportVCardActivity.java, In ActualExportThread class, I can't see anything about the contacts' data related to the VCardComoser object, how do they combined the contacts' data and VCardComoser