使用setOnClickFillInIntent和setPendingIntentTemplate时,单击事件永远不会发生

时间:2014-07-24 21:10:15

标签: android android-layout android-listview

我正在使用Android主屏幕应用小部件,该小部件使用自定义的行布局填充列表视图。 列表视图正确填充,但是当我单击任何项​​目时,没有任何反应。

以下是一些相关部分

来自AppWidgetManager的onUpdate()

...
final Intent contactIntent = new Intent(context, ContactService.class);
contactIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, widgetId);
contactIntent.setData(Uri.parse(contactIntent.toUri(Intent.URI_INTENT_SCHEME)));
view.setRemoteAdapter(widgetId, R.id.listview, contactIntent);
//works fine up to here, populates ListView

//Set up pendingIntentTemplate
final Intent contactClick = new Intent(context,ContactDial.class);
contactClick.setData(Uri.parse(contactClick.toUri(Intent.URI_INTENT_SCHEME)));
final PendingIntent contactClickPI = PendingIntent.getBroadcast(context,
     0,contactClick,PendingIntent.FLAG_UPDATE_CURRENT);
view.setPendingIntentTemplate(R.id.listview, contactClickPI);
Log.d("TEMPLATE", "set template");
...

从RemoteViewsFactory的getViewAt(int position)

final Intent i = new Intent();
final Bundle extra = new Bundle();
extra.putString("number", phoneNumber);

i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.putExtras(extra);
row.setOnClickFillInIntent(R.id.contact_row,i);
Log.d("FACTORY", "Set Intent Template");

日志显示代码已正确执行,但由于某种原因,它似乎没有注册我的点击。我把一个Log.d放在了应该发送intent的类的onCreate中,但它永远不会发生。 以下是我的布局的重要部分。

主要布局:

<LinearLayout
        android:id="@+id/layout_two"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:descendantFocusability="blocksDescendants" >


        <ListView
            android:id="@+id/listview"
            android:layout_width="match_parent"
            android:layout_height="260dp" />

        <!-- Some other views -->

    </LinearLayout>

自定义行:     

<LinearLayout android:id="@+id/contact_row"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:background="@xml/buttoncolor_selector"
    android:paddingBottom="2dp"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:paddingLeft="10dip" >

    <ImageView
        android:id="@+id/contact_photo"
        android:layout_width="@android:dimen/notification_large_icon_width"
        android:layout_height="match_parent"
        android:layout_marginRight="5dip"
        android:src="@drawable/ic_action_person   />

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"  >
        <TextView
            android:id="@+id/contact_name"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:textSize="18sp"
            android:gravity="center_vertical"
            android:singleLine="true"
            android:ellipsize="marquee"
            android:textIsSelectable="false"
            android:focusable="false"
            android:focusableInTouchMode="false"
            android:clickable="false"/>
        <TextView
            android:id="@+id/contact_number"
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_weight="1"
            android:singleLine="true"
            android:ellipsize="marquee"
            android:textIsSelectable="false"
            android:focusable="false"
            android:focusableInTouchMode="false"
            android:clickable="false"  />
    </LinearLayout>

</LinearLayout>

我只看了几乎我能在互联网上找到的每个例子,但没有一个解决方案改变了什么。 请帮忙。

1 个答案:

答案 0 :(得分:2)

在自定义定义的行中,尝试将android:id="@+id/contact_row"向下移动到子视图(即使它是&#34;无用的&#34;仅围绕其他所有内容的视图组)。或者,使用FrameLayout环绕顶级LinearLayout。我没有把setOnClickFillInIntent()设置为在这样的顶级视图组上定位ID的运气。

像这样,

<FrameLayout  xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

    <LinearLayout android:id="@+id/contact_row"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:background="@xml/buttoncolor_selector"
    android:paddingBottom="2dp"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:paddingLeft="10dip" >

    <ImageView
        android:id="@+id/contact_photo"
        android:layout_width="@android:dimen/notification_large_icon_width"
        android:layout_height="match_parent"
        android:layout_marginRight="5dip"
        android:src="@drawable/ic_action_person"   />
........

根据您的需要,您可以吃蛋糕并拥有它,如果重新排列布局,则可以使用非无用的视图组。