Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid Development the new boston *Email*
    primarykey
    data
    text
    <p>I am on the 36th tutorial of thenewboston android app development on youtube. He has had us copy and paste our code (cause we are supposed to know how to do it by now). I copied and pasted it, didnt work so i tried typing it all out. Still didnt work. My R.id isnt working. I have already had problems with this before so i knew to check my XML file. and in there everything is crazy. I get an error everywhere i have android:layout_width="match_parent". Did some research and i guess that got updated to "fill_parent" changed that, now I get an error in my XML saying "error: ERROR parising XML: not well-formed (invalid token)". I have tried starting over mulitple times. cleaning project. Restarting. Triple checking my code. I dont know what im doing wrong. please help guys! Im going nuts!! Thanks in advanced. </p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:weightSum="100" &lt;ScrollView android:layout_weight="30" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;TextView android:text="Email address(es):" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; &lt;EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/etEmails" /&gt; &lt;TextView android:text="Hatfull intro" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; &lt;EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/etIntro" /&gt; &lt;TextView android:text="Persons name" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/etName" /&gt; &lt;TextView android:text="Stupid things this person does:" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; &lt;EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="etThings" /&gt; &lt;TextView android:text="What do you want to do to this person?" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; &lt;EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/etAction" /&gt; &lt;TextView android:text="Hatefull Outro" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/etOutro" /&gt; &lt;/LinearLayout&gt; &lt;/ScrollView&gt; &lt;LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="40"&gt; &lt;Button android:text="Send" android:id="@+id/bSentEmail" android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;/Button&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="30"&gt; &lt;AnalogClock android:id="@+id/analogClock1" android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;/AnalogClock&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload