0

我正在尝试创建一个新的自定义底部操作栏。视觉效果看起来不错,但是,将 onClick 添加到膨胀的 ImageView(来自 RelativeLayout)会引发“找不到方法”错误。我正在使用下面的 textOnClickTest 方法对其进行测试。

我基本上是在尝试自定义图标之间的间距。onClick 似乎不起作用。

在此处输入图像描述

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    super.onCreateOptionsMenu(menu);

    new MenuInflater(this).inflate(R.menu.activity_menu, menu);
    RelativeLayout relativeLayout = (RelativeLayout) menu.findItem(R.id.search).getActionView();
    View view2 = getLayoutInflater().inflate(R.layout.bottom_actionbar, null);

    relativeLayout.addView(view2);

    return true;
}

测试功能:

public void textOnClickTest (){
    System.out.println("prints stuff");
}

bottom_action.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/action_bottom"
   android:layout_width="match_parent"
   android:layout_height="match_parent" >

<ImageView 
    android:id="@+id/layers"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:onClick="textOnClickTest"
    android:src="@drawable/layers_icon"/>

</RelativeLayout>

action_menu.xml

   <?xml version="1.0" encoding="utf-8"?>
   <menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
    android:title="Search"
    android:id="@+id/search"
    android:actionLayout="@layout/bottom_actionbar"
    android:icon="@drawable/layers_icon"
    android:numericShortcut="1"
    android:alphabeticShortcut="s"
    android:showAsAction="always" />

<item

    android:id="@+id/menuU"
    android:icon="@drawable/social_group"
    android:numericShortcut="2"
    android:alphabeticShortcut="u"
    android:showAsAction="always" />

</menu>

顶部操作栏:

 mActionBar = getActionBar();
        mActionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_SHOW_HOME);
        mActionBar.setDisplayShowHomeEnabled(false);
        mActionBar.setDisplayShowTitleEnabled(false);
        View view = View.inflate(getApplicationContext(), R.layout.just_text, null);
        mActionBar.setCustomView(view);

just_text.xml

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

<TextView
    android:id="@+id/action"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:gravity="center"
    android:clickable="true"
    android:onClick="testOnClickText"
    android:text="@string/app_name"
    android:textSize="30sp"/>

</RelativeLayout>
4

1 回答 1

1

textOnClickTest ()方法应接受 fype 的参数View。像这样的东西:

public void textOnClickTest (View view){
    //..
}

(作为旁注,在中膨胀该 RelativeLayoutonCreateOptionsMenu()似乎不是一个合适的位置。如果您希望在单击菜单选项时发生某些事情,那么您应该覆盖onOptionsItemSelected()

于 2013-06-28T17:58:29.397 回答