ImageButton 事件侦听器在 ScrollView 中不起作用 ->水平滚动视图

发布于 2024-12-12 01:50:46 字数 1105 浏览 0 评论 0原文

ImageButton 事件监听器不起作用。

这是我的代码(已更新):

XML:

<ScrollView ...>
    <LinearLayout
       android:orientation="vertical"
       ...
       >
       <HorizontalScrollView
          ...
          >
          <LinearLayout 
         android:orientation="horizontal"
     ...
         >
             <ImageButton
                 android:id="@+id/img_btn1"
     />
          </LinearLayout>
        </HorizontalScrollView>
    </LinearLayout>
</ScrollView>

Java 代码:

public class Main extends Activity{
    ImageButton imgBtn1;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        imgBtn1 = (ImageButton) findViewById(R.id.img_btn1);
        imgBtn1.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                Log.w("onClick", "ImageButton Clicked");
            }
        });
    }
}

此代码不起作用。感谢您的任何帮助。

ImageButton event listener is not working.

Here's my code (updated):

XML:

<ScrollView ...>
    <LinearLayout
       android:orientation="vertical"
       ...
       >
       <HorizontalScrollView
          ...
          >
          <LinearLayout 
         android:orientation="horizontal"
     ...
         >
             <ImageButton
                 android:id="@+id/img_btn1"
     />
          </LinearLayout>
        </HorizontalScrollView>
    </LinearLayout>
</ScrollView>

Java code:

public class Main extends Activity{
    ImageButton imgBtn1;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        imgBtn1 = (ImageButton) findViewById(R.id.img_btn1);
        imgBtn1.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                Log.w("onClick", "ImageButton Clicked");
            }
        });
    }
}

This code is not working. Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

奶气 2024-12-19 01:50:46

试试这个:-----

  ImageButton imgBtn1 = (ImageButton)findViewById(R.id.img_btn1);        
  imgButn1.setOnClickListener( new View.OnClickListener(){
    @Override
    public void onClick(View v) {
        Toast.makeText(getApplicationContext(), "+", Toast.LENGTH_SHORT).show();
    }
   });

Try this:-----

  ImageButton imgBtn1 = (ImageButton)findViewById(R.id.img_btn1);        
  imgButn1.setOnClickListener( new View.OnClickListener(){
    @Override
    public void onClick(View v) {
        Toast.makeText(getApplicationContext(), "+", Toast.LENGTH_SHORT).show();
    }
   });
故事与诗 2024-12-19 01:50:46

这在我这边工作得很好:

setContentView(R.layout.vhscroll);

ImageButton imageButton = (ImageButton)findViewById(R.id.imagebutton1);

    imageButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Toast.makeText(VHScrollViewActivity.this, "You clicked image button", Toast.LENGTH_LONG).show();
        }
    });

xml代码是:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ScrollView  android:id="@+id/scrollview" android:layout_width="fill_parent" android:layout_height="wrap_content">
    <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical">
            <HorizontalScrollView android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content">
                    <ImageButton android:id="@+id/imagebutton1" android:layout_width="100dip" android:layout_height="100dip" android:src="@drawable/sample_0" android:scaleType="fitXY"/>
</.......>

This is working fine on mine side:

setContentView(R.layout.vhscroll);

ImageButton imageButton = (ImageButton)findViewById(R.id.imagebutton1);

    imageButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Toast.makeText(VHScrollViewActivity.this, "You clicked image button", Toast.LENGTH_LONG).show();
        }
    });

and xml code is:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ScrollView  android:id="@+id/scrollview" android:layout_width="fill_parent" android:layout_height="wrap_content">
    <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical">
            <HorizontalScrollView android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content">
                    <ImageButton android:id="@+id/imagebutton1" android:layout_width="100dip" android:layout_height="100dip" android:src="@drawable/sample_0" android:scaleType="fitXY"/>
</.......>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文