Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>My xml code</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/relLayoutMain" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="@layout/background" &gt; &lt;ListView android:id="@+id/photoList" android:layout_width="fill_parent" android:layout_height="fill_parent" android:cacheColorHint="#00000000" android:footerDividersEnabled="true" android:paddingTop="5sp" &gt; &lt;/ListView&gt; &lt;/RelativeLayout&gt; </code></pre> <p>The row layout for the photoList is:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" &gt; &lt;ImageView android:id="@+id/imgView" android:contentDescription="@string/app_name" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingLeft="10dp" android:paddingRight="10dp" android:layout_below="@+id/llUserHeader" android:adjustViewBounds="true" /&gt; &lt;ListView android:id="@+id/commentList" android:layout_height="fill_parent" android:layout_width="fill_parent" android:layout_below="@+id/imgView" android:cacheColorHint="#00000000" android:footerDividersEnabled="true" &gt; &lt;/ListView&gt; &lt;/RelativeLayout&gt; </code></pre> <p>and the row layout for commentList is:</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="fill_parent" android:layout_height="wrap_content" android:paddingLeft="10sp" android:paddingRight="10sp" android:paddingTop="5sp" android:orientation="horizontal" &gt; &lt;TextView android:id="@+id/usernamecomment" android:text="@string/share_title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="15sp" /&gt; &lt;TextView android:id="@+id/comment" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_marginLeft="3sp" /&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