gpt4 book ai didi

Android:在DrawerMenu中扩展子菜单

转载 作者:行者123 更新时间:2023-11-29 19:28:58 25 4
gpt4 key购买 nike

我想在我的 Android 应用程序中使用以下选项实现 Drawermenu:

  1. 简介
  2. 设置
  3. 信息

对于 Drawermenu 的实现,有很多教程而且都非常清楚,但是我找不到任何关于在我的 Reddit 应用程序中添加与此类似的子菜单的内容:

With click on "My Subscriptions" the List of my Subscriptions expands

点击“我的订阅”,我的订阅列表会展开。

这真的这么难实现吗?欢迎任何想法或建议

我的抽屉是这样设置的:

布局 XML:

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- The navigation drawer -->
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="left|start"
android:background="#ffeeeeee"/>
</android.support.v4.widget.DrawerLayout>

主要 Activity :

package com.example.simon.drawtest;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.ListView;

public class MainActivity extends Activity {
private ListView mDrawerList;
private ArrayAdapter<String> mAdapter;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mDrawerList = (ListView) findViewById(R.id.left_drawer);
addDrawerItems();
}
private void addDrawerItems() {
String[] osArray = {"Profile", "Settings", "Info"};
mAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, osArray);
mDrawerList.setAdapter(mAdapter);
}
}

谢谢大家!

最佳答案

您需要将 ListView 替换为 ExpandableListView .这个不错tutorial开始。

关于Android:在DrawerMenu中扩展子菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40594257/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com