我有一个使用QuickContactBadge
s 显示联系人照片和弹出操作窗格的应用程序。
在我的布局中,我还有一个显示联系人姓名的TextView
下方。QuickContactBadge
现在,当您单击/触摸联系人的照片(右侧QuickContactBadge
)时,您只会获得实际的快速操作窗格。当您单击显示名称时,我希望它也显示操作窗格。TextView
有什么方法可以捕获 TextView 的单击事件并使用它来触发 QuickContactBadge 的单击,从而显示操作窗格?
我不确定它是否真的适用于这个问题,但这是我的布局的 XML。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="top|center_horizontal"
android:orientation="vertical" >
<QuickContactBadge
android:id="@+id/ContactBadge"
android:layout_width="48dp"
android:layout_height="48dp" >
</QuickContactBadge>
<TextView
android:id="@+id/ContactName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:ellipsize="end"
android:focusable="false"
android:focusableInTouchMode="false"
android:freezesText="true"
android:gravity="top|center_horizontal"
android:lines="2"
android:text="@string/val_DefaultString" >
</TextView>
</LinearLayout>