前提・実現したいこと
[初心者] android studio、Hello Worldでのエラー
android studioをインストールしましたが、Hello World(初期設定)の実行において下記のようなエラーが出て起動することができません。
activity_main.xmlのエラー画面は以下のようになっています。
ご回答よろしくお願いします。
発生している問題・エラーメッセージ
エラーメッセージ ・android:Layout_width="match_parent" Attribute android:layout_width is not allowed here ・android:Layout_height="match_parent" Attribute android:layout_height is not allowed here ・tools:context=".MainActivity"> Attribute tool:context is not allowed here ・<TextView Element TextView is not allowed here
該当のソースコード
Java ソースコード <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout>
試したこと
・他のwindows機器を使用して上記のようなエラーは出ませんでした。(できればmacを使用して開発を行いたいです)
・alt + enterにて出る選択肢のどれを選んでも解決しませんでした
補足情報(FW/ツールのバージョンなど)
ー実装環境は以下となっています
・macOS Catalina
・Android Studio 4.0
ーこのコードはandroid studioをインストールしてから未変更です。
ーエラーのためか、起動後もGradle: Build... の処理が30分以上かかっても終了しません。
あなたの回答
tips
プレビュー