Note that there are some explanatory texts on larger screens.

plurals
  1. POShowing a second TextView layout in Android
    primarykey
    data
    text
    <p>I am trying create a layout. There are several inner layouts that should like like this:</p> <p><a href="http://imageshack.us/photo/my-images/835/69560035.png/" rel="nofollow">http://imageshack.us/photo/my-images/835/69560035.png/</a></p> <p>So there is a main LinearLayout and several layouts inside like the one below.</p> <pre><code>&lt;LinearLayout android:id="@+id/LinearLayout02" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal"&gt; &lt;ImageView android:id="@+id/ImageView01" android:layout_width="30px" android:layout_height="30px" android:scaleType="fitXY" android:background="@drawable/gy1" android:layout_gravity="center_vertical"&gt; &lt;/ImageView&gt; &lt;LinearLayout android:id="@+id/LinearLayout04" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_gravity="center_vertical"&gt; &lt;TextView android:id="@+id/TextView01" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textSize="15px" android:textStyle="bold" android:textColor="#222222" android:paddingLeft="3px"&gt; &lt;/TextView&gt; &lt;TextView android:id="@+id/TextView02" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textColor="#222222" android:paddingBottom="5px" android:paddingLeft="3px" android:background="#D8D8D8" /&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; </code></pre> <p>The second TextView is not shown, and I cannot find out what is wrong with the code. How can I fix this problem?</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.
 

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