Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>yeah what is the point of having three different <code>GridView</code>. Just Create a single <code>GridView</code> as parent and have an separate layout for <code>GridItem</code> so you can style it the way you need to.</p> <p><strong>UPDATE</strong></p> <p>isn't something like this will work for you???</p> <p>one layout with following code</p> <pre><code> &lt;GridView android:id="@+id/gridTomorrow" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_below="@+id/FrameLayout1" android:layout_weight="1" android:numColumns="3" &gt; &lt;/GridView&gt; </code></pre> <p>and another Layout for <code>GridItem</code></p> <pre><code> &lt;FrameLayout android:id="@+id/FrameLayout1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" &gt; &lt;ImageView android:id="@+id/ImageView01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/gridframe" /&gt; &lt;FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right" android:layout_marginRight="10dp" android:layout_marginTop="10dp" android:background="@drawable/calender" &gt; &lt;TextView android:id="@+id/txtDateTomorrow" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:gravity="center" android:text="28" /&gt; &lt;/FrameLayout&gt; &lt;TextView android:id="@+id/TextView02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:layout_marginTop="3dp" android:text="Tomorrow" android:textColor="#000" /&gt; &lt;/FrameLayout&gt; </code></pre> <p>using an <code>GridAdapter</code> <code>Inflate</code> your <code>GridItems</code> into grid</p>
    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.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      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