1

我在 android studio 中使用Navigation Editor,我的 android studio 版本是3.3.2.

我的问题是当我向导航编辑器添加片段时,片段的属性未在设计模式下显示。看图片:

在此处输入图像描述

mobile_navigation.xml

<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:tools="http://schemas.android.com/tools">
    <fragment id="@+id/currentWeatherFragment2"
              name="ir.houmansanati.forecastmvvm.ui.weather.current.CurrentWeatherFragment"
              label="current_weather_fragment" tools:layout="@layout/current_weather_fragment"/>
    <fragment id="@+id/futureListWeatherFragment4"
              name="ir.houmansanati.forecastmvvm.ui.weather.future.list.FutureListWeatherFragment"
              label="future_list_weather_fragment" tools:layout="@layout/future_list_weather_fragment"/>
    <fragment id="@+id/futureDetailWeatherFragment2"
              name="ir.houmansanati.forecastmvvm.ui.weather.future.detail.FutureDetailWeatherFragment"
              label="future_detail_weather_fragment" tools:layout="@layout/future_detail_weather_fragment"/>
    <fragment id="@+id/settingsFragment2" name="ir.houmansanati.forecastmvvm.ui.setting.SettingsFragment"
              label="SettingsFragment"/>
</navigation>

如您所见,我在 XML 中的片段具有 name 和 label 以及 id 属性,但所有这些都标记为fragment. 即使我在按下Enter文本后从设计模式设置属性也消失了,但它在 XML 文本中发生了变化。

我已经尝试过Invalidate Caches/Restart,但问题仍然存在。

有什么帮助吗?

4

1 回答 1

2

您正在使用id=name=label=。根据实施导航文档,它们需要分别为android:id=android:name=android:label=

请注意,您的最顶层<navigation>元素也必须包含xmlns:android="http://schemas.android.com/apk/res/android"才能使用android:前缀。

于 2019-03-11T22:24:16.400 回答