1

我有一个使用QuickContactBadges 显示联系人照片和弹出操作窗格的应用程序。

在我的布局中,我还有一个显示联系人姓名的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>
4

1 回答 1

2

When binding the TextView, I did the following:

TextView tv = (TextView) v.findViewById(R.id.ContactName);
tv.setText(cnm);
tv.setOnClickListener(this);

My activity then implements OnClickListener. Then in the OnClick overrides, do the following:

@Override
public void onClick(View v) {
    switch(v.getId()) {
        case R.id.ContactName:
            TextView tv = (TextView) v;
            LinearLayout ll = (LinearLayout) tv.getParent();
            QuickContactBadge qb = (QuickContactBadge) ll.findViewById(R.id.ContactBadge);
            qb.performClick();

            break;
    }
}

The key here is the line: qb.performClick();.

于 2012-06-02T05:21:52.887 回答