I am new at using Android Studio, but I am quite alright in Java. So I tried to make a Hello World class in Android Studio and it didn't work. The ide gave two errors I had no clue what to do. Here is the piece of code that was giving me the "Attribute is missing the Android namespace prefix"
<style name="AppTheme.NoActionBar">
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<item name="coordinatorLayoutStyle">
android:layout_width="wrap_content"
android:layout_height="wrap_content">
@style/Widget.Design.CoordinatorLayout</item>
</style>
This next piece of code gives me this error "The view is not constrained. It only has designtime positions, so it will jump to (0,0), at runtime unless you add the constraints."
<EditText
android:id="@+id/HelloWorld"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName"
android:text="Hello World"
android:textColor="?android:attr/colorBackground"
tools:layout_editor_absoluteX="70dp"
tools:layout_editor_absoluteY="91dp" />
Well, I was trying to follow this tutorial on how to set up Android Studio and how to make a program on it. Well, the guy in the video didn't receive any when he loaded up his program but I did.