我正在尝试创建一个新的自定义底部操作栏。视觉效果似乎没问题,然而,在膨胀的ImageView(来自RelativeLayout)中添加onClick会引发'找不到方法'错误。我正在使用下面的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>
答案 0 :(得分:1)
textOnClickTest ()
方法应接受fype View
的参数。
像这样:
public void textOnClickTest (View view){
//..
}
(作为旁注,在onCreateOptionsMenu()
中夸大RelativeLayout似乎不是一个合适的位置。如果您想在点击菜单选项时发生某些事情,那么您应该覆盖onOptionsItemSelected()
)