Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I used one linear layout , thats enough for now</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:paddingLeft="10dip" android:paddingRight="10dip" android:paddingTop="10dip" android:text="@string/tsk" android:textSize="17dip" android:gravity="right" /&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:paddingLeft="10dip" android:paddingRight="10dip" android:paddingTop="10dip" android:text="@string/price" android:textSize="17dip" android:gravity="right"/&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:inputType="numberDecimal" android:singleLine="true" /&gt; &lt;!-- category Label --&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingLeft="10dip" android:paddingRight="10dip" android:paddingTop="10dip" android:text="@string/cat" android:textSize="17dip" android:gravity="right" /&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;TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="right" android:text="@string/de" /&gt; &lt;CalendarView android:id="@+id/calendarView1" android:layout_width="wrap_content" android:layout_height="59dp" android:gravity="right" /&gt; &lt;TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="0.20" android:gravity="right" android:text="@string/dr" /&gt; &lt;CalendarView android:id="@+id/calendarView2" android:layout_width="wrap_content" android:layout_height="40dp" android:layout_weight="0.39" android:gravity="right" /&gt; &lt;Button android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/save" /&gt; &lt;/LinearLayout&gt; </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.
    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