QuickContactBadge--------------关联联系人-----------------------

Posted Fei非非

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QuickContactBadge--------------关联联系人-----------------------相关的知识,希望对你有一定的参考价值。

 

 

xml--------------布局-----------------------

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<QuickContactBadge
android:id="@+id/badge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tx"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16dp"
android:text="我的偶像"/>
</LinearLayout>




MainActivity--------------------调用------------------------
QuickContactBadge badge;
@Override
public void onCreate(Bundle saveInstanceState){
super.onCreate(saveInstanceState);
setContentView(R.layout.quickcontactbadge);
badge=(QuickContactBadge) findViewById(R.id.badge);
badge.assignContactFromPhone("001-888888",false);
}

以上是关于QuickContactBadge--------------关联联系人-----------------------的主要内容,如果未能解决你的问题,请参考以下文章

带有 Android Lollipop 等字母的 Android QuickContactBadge

java 圆形图像与首字母。字体:https://stackoverflow.com/questions/27082367/android-quickcontactbadge-with-letters

UI组件:ImageView及其子类

android ui组件都有哪些

如何通过联系人 ID 打开 QuickContact

Android基础到进阶UI ImageView及其子类 介绍+实例