导航:首页 > 操作系统 > 安卓侧滑菜单怎么设置

安卓侧滑菜单怎么设置

发布时间:2025-01-04 09:48:30

‘壹’ androidQQ侧滑菜单代码

下面是一个简单的 Android QQ 侧滑菜单代码实现示例:

public class MainActivity extends AppCompatActivity {

private DrawerLayout drawerLayout;

private ActionBarDrawerToggle toggle;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

drawerLayout = findViewById(R.id.drawer_layout);

toggle = new ActionBarDrawerToggle(this, drawerLayout, R.string.open, R.string.close);

drawerLayout.addDrawerListener(toggle);

toggle.syncState();

getSupportActionBar().setDisplayHomeAsUpEnabled(true);

NavigationView navigationView = findViewById(R.id.nav_view);

navigationView.(new NavigationView.() {

@Override

public boolean onNavigationItemSelected(@NonNull MenuItem item) {

// 处理菜单项点击事件

drawerLayout.closeDrawer(GravityCompat.START);

return true;

}

});

}

@Override

public boolean onOptionsItemSelected(MenuItem item) {

if (toggle.onOptionsItemSelected(item)) {

return true;

}

return super.onOptionsItemSelected(item);

}

}

<?xml version="1.0" encoding="utf-8"?>

<androidx.drawerlayout.widget.DrawerLayout

xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="http://schemas.android.com/apk/res-auto"

android:id="@+id/drawer_layout"

android:layout_width="match_parent"

android:layout_height="match_parent">

<!-- 主布局 -->

<RelativeLayout

android:layout_width="match_parent"

android:layout_height="match_parent">

<!-- 添加主界面的控件 -->

</RelativeLayout>

<!-- 侧滑菜单布局 -->

<com.google.android.material.navigation.NavigationView

android:id="@+id/nav_view"

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:layout_gravity="start"

app:headerLayout="@layout/nav_header"

app:menu="@menu/nav_menu" />

</androidx.drawerlayout.widget.DrawerLayout>

其中,@layout/nav_header 表示侧滑菜单的头部布局,@menu/nav_menu 表示侧滑菜单的菜单项布局。

<?xml version="1.0" encoding="utf-8"?>

<menu xmlns:android="http://schemas.android.com/apk/res/android">

<group android:checkableBehavior="single">

<item

android:id="@+id/nav_home"

android:icon="@drawable/ic_home"

android:title="@string/menu_home" />

<item

android:id="@+id/nav_gallery"

android:icon="@drawable/ic_gallery"

android:title="@string/menu_gallery" />

<item

android:id="@+id/nav_slideshow"

android:icon="@drawable/ic_slideshow"

android:title="@string/menu_slideshow" />

</group>

</menu>

其中,@drawable/ic_XXX 表示菜单项的图标,@string/menu_XXX 表示菜单项的文字描述。

阅读全文

与安卓侧滑菜单怎么设置相关的资料

热点内容
神州泰坦用什么app 浏览:861
androidsdk升级版 浏览:699
科学解压小发明 浏览:444
视频免费送vip的app有什么 浏览:113
devc怎么重新编译 浏览:452
阿里云服务器退款了吗 浏览:427
在浏览器中显示命令栏 浏览:380
ps2模拟器反编译 浏览:970
小鹏场景编程 浏览:308
java设置按钮颜色 浏览:404
android请求网络超时 浏览:112
linuxgcc编译opencv 浏览:529
程序员的前妻怎么处理 浏览:682
中古最权威的app是什么 浏览:928
cmd命令换行 浏览:338
安卓手机怎么设置考勤打卡 浏览:465
程序员是否要裸辞 浏览:181
程序员相聚完整版 浏览:845
app服务器ip地址 浏览:500
安卓如何用相册里面的视频做壁纸 浏览:332