工具栏中的ImageButton不响应Click事件

时间:2017-08-09 15:10:09

标签: android onclicklistener android-toolbar buttonclick android-imagebutton

我想在工具栏中放置一个ImageButton,它是一个徽标,并对其进行配置,以便用户点击它,然后将它们带到网站。

我可以在所有3个片段上正确显示徽标,但如果点击徽标则没有任何反应。

来自activity_main的xml如下所示:

<?xml version="1.0" encoding="utf-8"?><android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
>

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="@dimen/appbar_padding_top"
    android:theme="@style/AppTheme">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/AppTheme">

        <ImageButton
            android:id="@+id/logo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:src="@drawable/jclogo"
            android:onClick="GoToLogo"/>

    </android.support.v7.widget.Toolbar>

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />

然后在片段中的OnActivityCreated中设置OnClickListener:

 public void onActivityCreated(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onActivityCreated(savedInstanceState);
    myLogo = (ImageButton) getActivity().findViewById(R.id.logo);
    myLogo.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Uri uri = Uri.parse("http://somewebsite.co.uk");
            Intent intent = new Intent(Intent.ACTION_VIEW, uri);
            startActivity(intent);
        }
    });
}

我还实现了OnClick方法:

    public void GoToLogo(View v) {
    v.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            Uri uri = Uri.parse("http://somewebsite.co.uk"); 
            Intent intent = new Intent(Intent.ACTION_VIEW, uri);
            startActivity(intent);

        }
    });
}

但没有任何反应。没有识别出任何被点击的徽标。它没有响应,因为它在工具栏中吗?

非常感谢。

3 个答案:

答案 0 :(得分:0)

您必须在onClick中实施GoToLogo方法Activity,而不是Fragment

答案 1 :(得分:0)

暂时在onClickListener中注释掉onCreate()并将GoToLogo()方法更改为此方法,看看是否有效

public void GoToLogo(View v) {
        Uri uri = Uri.parse("http://somewebsite.co.uk"); 
        Intent intent = new Intent(Intent.ACTION_VIEW, uri);
        startActivity(intent);

    }

答案 2 :(得分:0)

删除

android:onClick="GoToLogo"

和GoToLogo方法,您不需要像定义onClick行为那样加倍。

然后尝试findView对应,在Activity中而不是片段中更有意义。