我的要求是我想创建一个带有图像的联系人,并且在联系人图像旁边我想显示联系人的姓名。
下面是我的代码: 这里我也可以创建联系人,但我无法获得准确的输出。
代码:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<QuickContactBadge
android:id="@+id/quickContactBadge1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/checkedTextView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckedTextView" />
</LinearLayout>
我的输出:
要求输出:
请任何人建议我。
谢谢。