Note that there are some explanatory texts on larger screens.

plurals
  1. POBad xml block 3 linearlayout and 2 calender
    primarykey
    data
    text
    <p>hi i'm trying to create an xml file which includes 1- label 'task' and a text view under it for user input 2- label 'price' and a text view under it for user input 3-label 'category' and a combobox with 6 choices 4- label 'date to end' and a calender beside it 5- label 'date to remind' and a calender beside it finally a button for saving the problem is I couldn't find combobox on eclipse, the second calender and button don't appear here is the code</p> <p>xml file</p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" &gt; &lt;!-- Name Label --&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/tsk" android:paddingLeft="10dip" android:paddingRight="10dip" android:paddingTop="10dip" android:textSize="17dip"/&gt; &lt;!-- Input Name --&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="5dip" android:layout_marginBottom="15dip" android:singleLine="true"/&gt; &lt;!-- Price Label --&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/price" android:paddingLeft="10dip" android:paddingRight="10dip" android:paddingTop="10dip" android:textSize="17dip"/&gt; &lt;!-- Input Price --&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="5dip" android:layout_marginBottom="15dip" android:singleLine="true" android:inputType="numberDecimal"/&gt; &lt;!-- category Label --&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/cat" android:paddingLeft="10dip" android:paddingRight="10dip" android:paddingTop="10dip" android:textSize="17dip"/&gt; &lt;!-- Input category --&gt; &lt;EditText android:layout_width="fill_parent" android:layout_height="32dp" android:layout_margin="5dip" android:layout_marginBottom="15dip" android:gravity="top" android:lines="4" /&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:paddingTop="4dip" android:paddingBottom="6dip" android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;TextView android:layout_width="90dip" android:layout_height="wrap_content" android:layout_weight="0.00" android:text="@string/de" /&gt; &lt;Calender android:layout_width="wrap_content" android:layout_height="36dp" /&gt; &lt;/LinearLayout&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:paddingTop="4dip" android:paddingBottom="6dip" android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;TextView android:layout_width="90dip" android:layout_height="wrap_content" android:layout_weight="0.00" android:text="@string/de" /&gt; &lt;Calender android:layout_width="wrap_content" android:layout_height="66dp" /&gt; &lt;/LinearLayout&gt; &lt;!-- Button Create task --&gt; &lt;Button android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/save"/&gt; &lt;/LinearLayout&gt; </code></pre> <p>and there are many error</p> <pre><code>[2013-03-30 21:46:01 - checklist] W/ResourceType(12304): Bad XML block: header size 301 or total size 0 is larger than data size 0 [2013-03-30 21:46:01 - checklist] C:\Users\Najd\workspace\checklist\res\values\strings.xml:4: error: Found tag id where item is expected [2013-03-30 21:46:01 - checklist] C:\Users\Najd\workspace\checklist\res\layout\add_task.xml:7: error: Error: No resource found that matches the given name (at 'text' with value '@string/tsk'). [2013-03-30 21:46:01 - checklist] C:\Users\Najd\workspace\checklist\res\layout\add_task.xml:24: error: Error: No resource found that matches the given name (at 'text' with value '@string/price'). [2013-03-30 21:46:01 - checklist] C:\Users\Najd\workspace\checklist\res\layout\add_task.xml:42: error: Error: No resource found that matches the given name (at 'text' with value '@string/cat'). [2013-03-30 21:46:01 - checklist] C:\Users\Najd\workspace\checklist\res\layout\add_task.xml:67: error: Error: No resource found that matches the given name (at 'text' with value '@string/de'). [2013-03-30 21:46:01 - checklist] C:\Users\Najd\workspace\checklist\res\layout\add_task.xml:80: error: Error: No resource found that matches the given name (at 'text' with value '@string/save'). [2013-03-30 21:46:01 - checklist] C:\Users\Najd\workspace\checklist\res\menu\activity_main_task.xml:3: error: Error: No resource found that matches the given name (at 'title' with value '@string/menu_settings'). </code></pre>
    singulars
    1. This table or related slice is empty.
    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.
    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