抽屉列表阵列适配器崩溃了应用

时间:2017-06-11 04:54:45

标签: java android android-fragments android-activity navigation-drawer

我正面临有关Android导航抽屉菜单实施的问题。当我尝试通过字符串适配器使用字符串列表(或数组,两者都不起作用)填充左侧菜单选项时,应用程序崩溃得太快,以至于LogCat不会捕获任何消息。

主要活动错误部分:

package edu.getjedi.frontend.mobile;

import android.Manifest;
import android.content.pm.PackageManager;
import android.support.v4.app.ActivityCompat;
import android.support.v4.app.FragmentActivity;
import android.os.Bundle;
import android.support.v4.widget.DrawerLayout;
import android.util.Log;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;

import java.util.ArrayList;

public class MainMapActivity extends FragmentActivity implements OnMapReadyCallback {
private UserLocationHandler locationHandler;
private DrawerLayout mDrawerLayout;
private ListView mDrawerList;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    ArrayList<String> test = new ArrayList<>();

    test.add("abc");
    test.add("def");
    test.add("ghi");

    setContentView(R.layout.activity_main);
    // Obtain the SupportMapFragment and get notified when the map is ready to be used.
    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this);
    mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
    mDrawerList = (ListView) findViewById(R.id.left_drawer);
    // Set the list's click listener
    mDrawerList.setOnItemClickListener(new DrawerMenuHandler());
    mDrawerList.setAdapter(new ArrayAdapter<String>(this, R.layout.activity_main, test)); // Trouble is here!!
}

(...)

如果我对mDrawerList.setAdapter(...)行发表评论,其他所有内容都可以正常使用。

layout / activity_main.xml:

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- The main content view -->
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="edu.getjedi.frontend.mobile.MainMapActivity" />
<!-- The navigation drawer -->
<ListView android:id="@+id/left_drawer"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:choiceMode="singleChoice"
    android:divider="@android:color/transparent"
    android:dividerHeight="0dp"
    android:background="#111"/>
</android.support.v4.widget.DrawerLayout>

我遵循的指南: Navigation Drawer - Android Developers

教程和我的代码示例之间的区别是什么?   - FrameLayout是一个地图片段,包含指向MainMapActivity的指针作为上下文。

该应用程序通过Volley处理GPS和Http请求就好了,但当我添加此行时

        mDrawerList.setAdapter(new ArrayAdapter<String>(this, R.layout.activity_main, test));

它拒绝启动并产生任何有用的消息。

任何帮助表示赞赏。 谢谢你的阅读。

2 个答案:

答案 0 :(得分:2)

你完全错了。

new ArrayAdapter<String>(CONTEXT,VIEW_ID_TO_SHOW_TEXT, YOUR_LIST)

你不应该将R.layout.activity_main传递给它。使用:

  

android.R.layout.simple_list_item_1

或制作只是文字视图的自定义布局。

new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, test)

答案 1 :(得分:1)

正如Smariz指出:第二个参数是用于显示数组内容的视图,而不是我之前认为的抽屉所在的视图。

创建layout / menu_list.xml作为适配器模板:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tv"
android:textColor="#FFF"
android:paddingTop="5sp"
android:layout_width="fill_parent"
android:background="#111"
android:maxLines="1"
android:gravity="left"
android:layout_height="fill_parent"/>

(或简单使用Android提供的其中一个,如android.R.layout.simple_list_item_1)

请参阅它或适配器用于将阵列内容定位在屏幕上的其他布局:

drawerList.setAdapter(new ArrayAdapter<String>(this, R.layout.menu_list, yourList));