Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Layout</p> <pre><code>&lt;ImageView android:layout_width="82dip" android:layout_height="50dip" android:layout_centerInParent="true" android:background="@drawable/spinner" android:id="@+id/splashSpinner"/&gt; </code></pre> <p>Drawable</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false"&gt; &lt;item android:drawable="@drawable/anim__000" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__001" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__002" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__003" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__004" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__005" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__006" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__007" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__008" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__009" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__010" android:duration="100" /&gt; &lt;item android:drawable="@drawable/anim__011" android:duration="100" /&gt; &lt;/animation-list&gt; </code></pre> <p>JAVA</p> <pre><code> this.spinner = this.view.findViewById(R.id.splashSpinner); this.spinner.post(new Runnable() { @Override public void run() { AnimationDrawable spinnerAnim = (AnimationDrawable) spinner.getBackground(); if (!spinnerAnim.isRunning()) { spinnerAnim.start(); } } }); </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.
    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