1

我是 android 新手,正在尝试创建一个列表详细信息应用程序。我正在尝试添加 PlaceAutocompleteFragment 以在我的列表中搜索和添加地点。

现在我想将 PlaceAutocompleteFragment 添加到我的应用程序中,并以这样一种方式触发它:如果我单击操作栏菜单项上的加号(“+”),就会调用搜索对话框。

相反,我只能设法将 PlaceAutocompleteFragment 添加到我的列表活动的布局中。

city_list.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:android="http://schemas.android.com/apk/res/android" >

    <fragment
        android:id="@+id/place_autocomplete_fragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
        />


<android.support.v7.widget.RecyclerView 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"
    android:id="@+id/city_list"
    android:name="com.apoorv.android.weatherapp.CityListFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    app:layoutManager="LinearLayoutManager"
    tools:context="com.apoorv.android.weatherapp.CityListActivity"
    tools:listitem="@layout/city_list_content" />
</LinearLayout>
enter code here

现在的样子

然而,我尝试将它添加到我的活动的菜单中,但是如果我将片段添加到我的菜单中,它会使应用程序崩溃并出现 NullPointer 异常。

 <?xml version="1.0" encoding="utf-8"?>
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/add_city_button"
        android:icon="@android:drawable/ic_input_add"
        android:title="Add City"
        app:showAsAction="ifRoom" />
    <fragment
        android:id="@+id/place_autocomplete_fragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
        />
</menu>

我想在单击此菜单的 + 号时调用自动完成对话框。

加号

4

0 回答 0