Je viens de commencer à utiliser la nouvelle bibliothèque android.support.design. Lorsque j'utilise l'un des widgets de l'éditeur XML, j'arrête de recevoir les suggestions de saisie semi-automatique XML!
Par exemple,
<android.support.design.widget.CoordinatorLayout
android:id="@+id/header_root"
android:layout_width="match_parent"
android:layout_height="200dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/primary_dark" />
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:src="@drawable/ic_action_add"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginTop="56dp"
app:fabSize="normal"
app:layout_anchor="@id/header_root"
app:layout_anchorGravity="bottom|right|end" />
</android.support.design.widget.CoordinatorLayout>
Aucune des balises n'affichera la fenêtre contextuelle de saisie semi-automatique, comme lorsque je commence à taper "android: i" aucune fenêtre contextuelle n'apparaît, la seule suggestion que je reçois est illustrée dans l'image suivante.
J'ai essayé de nettoyer mon projet, de redémarrer le pc, de redémarrer Android Studio .. rien ne fonctionne!