am 82d201b3
: FastTrack->QuickContact
Merge commit '82d201b33a7e8766977750285d6c0606c8d487cc' into eclair-plus-aosp * commit '82d201b33a7e8766977750285d6c0606c8d487cc': FastTrack->QuickContact
This commit is contained in:
commit
d38d5d1438
Before Width: | Height: | Size: 1005 B After Width: | Height: | Size: 1005 B |
Before Width: | Height: | Size: 724 B After Width: | Height: | Size: 724 B |
@ -33,7 +33,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginRight="5dip"
|
android:layout_marginRight="5dip"
|
||||||
android:baselineAlignBottom="true"
|
android:baselineAlignBottom="true"
|
||||||
android:background="@drawable/fasttrack_presence_bg" />
|
android:background="@drawable/quickcontact_presence_bg" />
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/from"
|
android:id="@+id/from"
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
|
@ -55,7 +55,7 @@ import android.provider.Browser;
|
|||||||
import android.provider.ContactsContract;
|
import android.provider.ContactsContract;
|
||||||
import android.provider.ContactsContract.CommonDataKinds;
|
import android.provider.ContactsContract.CommonDataKinds;
|
||||||
import android.provider.ContactsContract.Contacts;
|
import android.provider.ContactsContract.Contacts;
|
||||||
import android.provider.ContactsContract.FastTrack;
|
import android.provider.ContactsContract.QuickContact;
|
||||||
import android.provider.ContactsContract.StatusUpdates;
|
import android.provider.ContactsContract.StatusUpdates;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.text.util.Regex;
|
import android.text.util.Regex;
|
||||||
@ -499,7 +499,7 @@ public class MessageView extends Activity implements OnClickListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle clicks on sender, which shows {@link FastTrack} or prompts to add
|
* Handle clicks on sender, which shows {@link QuickContact} or prompts to add
|
||||||
* the sender as a contact.
|
* the sender as a contact.
|
||||||
*/
|
*/
|
||||||
private void onClickSender() {
|
private void onClickSender() {
|
||||||
@ -517,8 +517,8 @@ public class MessageView extends Activity implements OnClickListener {
|
|||||||
final Uri lookupUri = ContactsContract.Data.getContactLookupUri(resolver, dataUri);
|
final Uri lookupUri = ContactsContract.Data.getContactLookupUri(resolver, dataUri);
|
||||||
|
|
||||||
if (lookupUri != null) {
|
if (lookupUri != null) {
|
||||||
// Found matching contact, trigger FastTrack
|
// Found matching contact, trigger QuickContact
|
||||||
FastTrack.showFastTrack(this, mSenderPresenceView, lookupUri, FastTrack.MODE_MEDIUM,
|
QuickContact.showQuickContact(this, mSenderPresenceView, lookupUri, QuickContact.MODE_MEDIUM,
|
||||||
null);
|
null);
|
||||||
} else {
|
} else {
|
||||||
// No matching contact, ask user to create one
|
// No matching contact, ask user to create one
|
||||||
|
Loading…
Reference in New Issue
Block a user