如何在Android通知中创建可点击的Textview?

时间:2014-01-19 09:56:44

标签: android textview android-notifications clickable

我正在尝试在通知中创建可点击的TextView 我已经使用TextViews创建了一个布局,并使用remoteView来构建通知布局 在通知构建方法中,我使用setOnClickPendingIntent()Pending Intent分配给TextView 当我实际尝试点击TextView时,整个通知被“点击”(因为除了整个通知之外没有可点击区域作为一个块)。
我已经尝试删除通知本身的pendingIntent,但是点击了整个通知(只是什么也没做)。
应该怎么做才能使这些元素可以点击? 是否只能在通知中点击按钮?

1 个答案:

答案 0 :(得分:2)

为布局中的textviews提及android:clickable =“true”。

像:

<TextView android:id="@id/tv1"
android:clickable="true"/>

通过编程方式:

textview.setClickable(true);