Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I've played around with a sample XML layout to get a similar effect that you are looking for. Take a look at this screenshot and code.</p> <p><img src="https://i.stack.imgur.com/QjVfB.png" alt="Screenshot of the layout"></p> <p>The XML to achieve the layout is pasted below. Obviously you can style it however you like.</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="match_parent" android:layout_height="wrap_content"&gt; &lt;RelativeLayout android:id="@+id/RelativeLayoutLeftButton" android:layout_width="wrap_content" android:layout_height="wrap_content" &gt; &lt;ProgressBar android:id="@+id/progressBar1" style="?android:attr/progressBarStyleLarge" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" /&gt; &lt;ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:background="@android:color/transparent" android:src="@drawable/ic_play" /&gt; &lt;/RelativeLayout&gt; &lt;TextView android:id="@+id/textView1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_toRightOf="@+id/RelativeLayoutLeftButton" android:text="Click Here" android:textAppearance="?android:attr/textAppearanceSmall" android:textColor="#006666" android:textSize="12sp" /&gt; &lt;/RelativeLayout&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. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      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