i'm trying to use the QuickContactBadge; i would like to get an effect like this:
but when i write this code:
QuickContactBadge badge = (QuickContactBadge) findViewById(R.id.badge_small);
badge.assignContactFromPhone("831-555-1212", true);
I don't see the badge but i am redirected to the Contact page.
Here is layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<QuickContactBadge
android:id="@+id/badge_small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon"></QuickContactBadge>
</LinearLayout>
How can i see the badge?
Thanks in advance c.