我目前正在开发我的第一个Android应用,因此我正在使用fab-speed-dial。我已经实现了浮动操作按钮,以便选项适合我的需要。但现在我需要为菜单项分配动作。
E.g。如果在下面的屏幕截图中单击“添加房间”,我想显示一个输入字段:
我已经尝试过添加一些听众,但显然我做错了。这是我目前在MainActivity.java中使用的代码
import numpy as np
df
Out[20]:
date
0 2016-04-15 08:05:10
1 2016-04-15 08:15:30
2 2016-04-15 10:45:22
3 2016-04-18 06:23:10
4 2016-04-18 07:37:30
5 2016-04-18 12:48:22
6 2016-04-18 12:48:22
np.unique(df["date"].dt.strftime('%d-%m-%y'))
Out[22]: array(['15-04-16', '18-04-16'], dtype=object)
我的activity_main.xml如下所示:
FabSpeedDial fabSpeedDial = (FabSpeedDial) findViewById(R.id.fab_speed_dial);
fabSpeedDial.setMenuListener(new SimpleMenuListenerAdapter() {
@Override
public boolean onMenuItemSelected(MenuItem menuItem) {
//what do I do here?
return false;
}
});
最后但并非最不重要的是menu_speeddial.xml中的菜单条目
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<io.github.yavski.fabspeeddial.FabSpeedDial
android:id="@+id/fab_speed_dial"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
app:fabGravity="bottom_end"
app:fabMenu="@menu/menu_speeddial"
app:miniFabBackgroundTint="@android:color/white"
app:miniFabDrawableTint="?attr/colorPrimaryDark"
app:miniFabTitleTextColor="?attr/colorPrimaryDark" />
</FrameLayout>
任何有关如何处理此问题的帮助都将受到高度赞赏。
答案 0 :(得分:1)
我没有使用过这个库。但是看到你的代码,我可以猜到问题出在MenuListener中。
@Override
public boolean onMenuItemSelected(MenuItem menuItem) {
if (menuItem.getItemId()==1){
System.out.print("number 1 clicked");
}
return false;
}
我认为,您必须使用资源ID检查等于。像这样,
if (menuItem.getItemId() == R.id.add_room){
System.out.print("number 1 clicked");
}