ottengo l'avvertimento: "Questo campo di testo non specifica un InputType o un suggerimento" Quando modifico una copia di un codice di tutorial (in basso)Questo campo di testo non specifica un InputType o un suggerimento
<EditText android:id="@+id/edit_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/edit_message"
android:layout_weight="1" />
Funziona bene e l'avvertimento si presenta solo se viene creata una nuova riga vuota
L'ho modificato per un amico con diverse righe di commenti che spiegano cosa fa ogni parte di esso tuttavia, ogni volta che aggiungo una riga aggiuntiva in quanto sopra (anche una riga vuota, in questo caso è una riga di commento) Ricevo l'errore sopra riportato
<!--edit text creates a text input box-->
<EditText android:id="@+id/edit_message"
<!-- edit_message is a variable, defined in strings.xml-->
<!-- determines the width of the textField, in this case 0dp means "however long the text is" IE: it will grow to fit however many characters the user types -->
android:layout_width="0dp"
<!-- determines the height of the Text Field -->
android:layout_height="wrap_content"
<!-- The hint is the default value for the text field, it calls on the variable edit_message defined in strings.xml-->
android:hint="@string/edit_message"
<!-- Weight means how much the screen the text field can take up, in this case, the ratio is 1:1 so it can take up however much room is needed, However if a different variable also had the weight of 1, the ratio would be 1:2 and each could take up half the screen -->
android:layout_weight="1" />
Senza i commenti, l'avvertimento non è lì
Per quanto ne so, non è possibile che i commenti interrompano l'elemento xml. Cioè non puoi inserire commenti tra ' '. [Una domanda simile] (http://stackoverflow.com/a/16904880/1029225), con lo stesso codice di snippet, è stata recentemente risposta. –