从不调用LinearLayout的click侦听器

时间:2011-04-13 15:39:33

标签: android mobile android-linearlayout android-3.0-honeycomb

尝试让一个onclick监听器工作在linearlayout但它从未调用过:(。已启用可点击和focsuable(两种模式),仍然无法让点击监听器响应。平台详细信息:Android 3.0 ..任何帮助?代码

           <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:id="@+id/menu_items_button"
                android:layout_width="0dip"
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:orientation="vertical"
                android:gravity="center_horizontal"
                android:paddingTop="@dimen/gen_margin_xsmall"
                android:paddingBottom="@dimen/gen_margin_xsmall"
                android:background="@drawable/rule_bg_menu_button"
                android:clickable="true"
              android:focusableInTouchMode="true"
            >
                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/menu_items"
                    android:tag="image"
                />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:tag="text"
                    android:text="@string/menu_items_icon_txt"
                    style="@style/textDisplay.mediumLarge"
                />

            </LinearLayout>

并在代码中添加事件监听器

_itemsButton = (LinearLayout) menu.findViewById(R.id.menu_items_button);
final Intent itemsIntent = new Intent(this, ItemsActivity.class);
_itemsButton.setOnClickListener(
            new View.OnClickListener() {    
                @Override
                public void onClick(View v) {
                    startActivity(itemsIntent); //Never called!
                }
            }
        );

我之所以这样做并且不使用图像按钮的原因是因为“按钮”的背景是基于状态的(渐变变化)而且是图像,并且为了在点击/焦点上组合两者,我使用了一个自己有一个ImageView的linearlayout ..有关为什么clickListener没有在linearLayout上工作的任何建议?

THX

3 个答案:

答案 0 :(得分:5)

点击是否转到ImageView而不是LinearLayout?尝试单击填充区域(如果有)或尝试将单击侦听器放在ImageView1上。

答案 1 :(得分:3)

(将我的回复添加为新答案,以便我可以使用PRE标记。)

简单的方法是在图像视图和文本视图上设置相同的单击侦听器。

View.OnClickListener activityLauncher = new View.OnClickListener() {... }
layout.setOnClickListener(activityLauncher);
imageView.setOnClickListener(activityLauncher);
textView.imageView.setOnClickListener(activityLauncher);

答案 2 :(得分:-3)

LinearLayout的宽度设置为“0dip”,您应该在屏幕上看不到任何内容。

如果宽度更改为“FULL_PARENT”,则可以。请再次仔细检查您的密码。