J'ai commencé à apprendre Android Studio d'hier. J'essaie de faire écho à de simples "Hello World":
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/activity_main"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
android:paddingBottom="16dp"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
</RelativeLayout>
mais quand j'ai cliqué sur "design", cette erreur est de montrer?
L'éditeur de conception n'est pas disponible jusqu'à ce qu'une construction réussie
Comment puis-je corriger cette erreur. Je viens de télécharger Android Studio hier.
Je viens de remarquer que mon code xml est à l'origine de l'erreur. c'est pourquoi, c'est peut-être pas de travail. Merci beaucoup