我有一个应用程序,它在操作菜单项中有切换按钮,虽然我使用的是 Actionbar Sherlock,但我不知道如何将切换按钮放在操作菜单项中。我不想将其作为自定义布局放置在操作栏中,但我想将其放置为菜单项。如果有人找到解决方案,请帮助我。
目的,如果我更改切换按钮的状态,它将根据 ALphabets 和出生日期再次对人进行排序。
提前致谢!
我有一个应用程序,它在操作菜单项中有切换按钮,虽然我使用的是 Actionbar Sherlock,但我不知道如何将切换按钮放在操作菜单项中。我不想将其作为自定义布局放置在操作栏中,但我想将其放置为菜单项。如果有人找到解决方案,请帮助我。
目的,如果我更改切换按钮的状态,它将根据 ALphabets 和出生日期再次对人进行排序。
提前致谢!
只需像普通菜单按钮一样添加它,使用布尔变量检查其状态,更改排序模式时可以更改图标和标题
boolean birthSort=false;
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.menu_toggle:
if(birthSort){
//change your view and sort it by Alphabet
item.setIcon(icon1)
item.setTitle(title1)
birthSort=false;
}else{
//change your view and sort it by Date of Birth
item.setIcon(icon2)
item.setTitle(title2)
birthSort=true;
}
return true;
}
return super.onOptionsItemSelected(item);
}
不要忘记像任何其他菜单按钮一样将其添加到 xml 中,并配置android:showAsAction
是否要在溢出或外部显示它。
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/menu_toogle"
android:showAsAction="ifRoom"
android:title="Share"
/>
</menu>
其他方法是为您的 ActionBar 使用自定义布局:
基本上你定义一个包含你的切换的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ToggleButton
android:id="@+id/actionbar_service_toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textOn="Logging On"
android:textOff="Logging Off" />
</RelativeLayout>
备选方案 1: 然后在您的Activity或Fragment容器中执行以下操作:
ActionBar actionBar = getSupportActionBar();
actionBar.setCustomView(R.layout.actionbar_top);
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME | ActionBar.DISPLAY_SHOW_CUSTOM);
...
ToggleButton button = (ToggleButton) findViewById(R.id.actionbar_service_toggle);
请注意,您拥有一个真正的 ToggleButton,并且您在代码中将其作为一个真实对象 ToggleButton 进行处理,与您重新实现自己的切换(主题、可靠性、视图层次结构、本机支持......)相比,它具有很多优势.
源代码在这里。
备选方案 2: 另一种方法是将您的自定义视图嵌入到常规菜单视图中:
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/myswitch"
android:title=""
android:showAsAction="always"
android:actionLayout="@layout/actionbar_service_toggle" />
</menu>
如果像我一样,actionLayout 不适合您,请尝试app:actionLayout="@layout/actionbar_service_toggle"
代替android:actionLayout="@layout/actionbar_service_toggle"
以及app:showAsAction="always"
代替。android:showAsAction="always"
这是因为如果您使用 appCompat,则不会使用 android 命名空间。
所以这是最终版本:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ToggleButton
android:id="@+id/actionbar_service_toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textOn="Logging On"
android:textOff="Logging Off" />
</RelativeLayout>
和
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/myswitch"
android:title=""
app:showAsAction="always"
app:actionLayout="@layout/actionbar_service_toggle" />
</menu>
在菜单中创建 xml 文件:
菜单.xml
<menu 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" tools:context="si.ziga.switchinsideab.MainActivity">
<item android:id="@+id/switchId" android:title="" android:showasaction="always" android:actionlayout="@layout/switch_layout">
<item android:id="@+id/action_settings" android:orderincategory="100" android:title="@string/action_settings" app:showasaction="never">
</item></item></menu>
然后导航到您的布局文件夹创建一个新的 xml 文件并将其命名为 switch_layout.xml 这是代码:switch_layout.xml
<!--?xml version="1.0" encoding="utf-8"?-->
<relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="match_parent" android:orientation="horizontal">
<switch android:id="@+id/switchAB" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerhorizontal="true" android:layout_centervertical="true">
</switch></relativelayout>
在您的 MainActivity 类中复制并粘贴以下代码:
MainActivity.java
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu, menu);
switchAB = (Switch)menu.findItem(R.id.switchId)
.getActionView().findViewById(R.id.switchAB);7
或者按照这个链接了解这些东西
这里的东西很简单
<?xml version="1.0" encoding="utf-8"?>
<item
android:title="@string/mode"
android:id="@+id/switch1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:switchMinWidth="56dp"
android:layout_marginTop="120dp"
app:showAsAction="ifRoom"
app:actionViewClass="androidx.appcompat.widget.SwitchCompat"
android:checked="false"/>