Note that there are some explanatory texts on larger screens.

plurals
  1. POVisibility of another layout within same layout not working?
    text
    copied!<p>I can't see my textview tv_progress_status in grid_progress_layout, only i can see is my progress bar... so i can't show my progress update. If i cut my Textview code and paste it above progress bar, then textview shows and progressbar not showing.</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/Rl_imageframe" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="5dp" android:background="@drawable/imageframe" android:paddingBottom="5dp" &gt; &lt;TextView android:id="@+id/tv_header" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_margin="4dp" android:gravity="center" android:textColor="@android:color/white" android:textSize="10sp" /&gt; &lt;ImageView android:id="@+id/iv_cover_page" android:layout_width="90dp" android:layout_height="120dp" android:layout_below="@+id/tv_header" android:layout_centerHorizontal="true" android:contentDescription="@string/cover_page" /&gt; &lt;ImageView android:id="@+id/iv_delete" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:background="@drawable/close_btn" android:contentDescription="@string/cover_page" android:visibility="invisible" /&gt; &lt;Button android:id="@+id/b_footer" android:layout_width="fill_parent" android:layout_height="15dp" android:layout_below="@+id/iv_cover_page" android:layout_margin="4dp" android:background="@drawable/issue_selector_red" android:textColor="@android:color/white" android:textSize="9sp" /&gt; &lt;RelativeLayout android:id="@+id/grid_progress_layout" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" &gt; &lt;ProgressBar android:id="@+id/progressBar1" style="?android:attr/progressBarStyleHorizontal" android:layout_width="fill_parent" android:layout_height="15dp" android:layout_centerInParent="true" android:layout_marginLeft="5dp" android:layout_marginRight="5dp" android:max="100" android:progressDrawable="@drawable/progressbarlayout" /&gt; &lt;TextView android:id="@+id/tv_progress_status" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:background="@android:color/transparent" android:text="100" android:textColor="@android:color/white" /&gt; &lt;/RelativeLayout&gt; &lt;/RelativeLayout&gt; </code></pre>
 

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