Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio 3.2 canary build is not rendering Navigation tag

Android studio 3.2 canary 14 is not rendering the navigation tag. It just shows the waiting for a build to finish.

navigation_graph

<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <fragment
        android:id="@+id/fragment_nav_host"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:defaultNavHost="true"
        app:navGraph="@navigation/navigation_graph" />
</navigation>

enter image description here

like image 923
Rajesh Khadka Avatar asked May 16 '18 22:05

Rajesh Khadka


1 Answers

You need to

  • turn on experimental feature "enable navigation editor"

    under menu> android studio>preferences>experimental

  • clean and rebuild project enter image description here

like image 79
ir2pid Avatar answered Sep 22 '22 07:09

ir2pid