Note that there are some explanatory texts on larger screens.

plurals
  1. POIs there a way to disable all the items in a specific layout programmatically?
    primarykey
    data
    text
    <p>I have A game to which I recently added a global high score functionality which made a lot of people upset so I want to add the option of disabling it. What I did was this: in my settings activity view, I added the following:</p> <pre><code>&lt;!-- High Score Tracking --&gt; &lt;LinearLayout android:layout_weight="40" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:padding="5dip"&gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content"&gt; &lt;CheckBox android:text="@string/EnableHighscoreCBText" android:id="@+id/EnableHighscoreCB" android:layout_width="fill_parent" android:layout_height="wrap_content"&gt; &lt;/CheckBox&gt; &lt;/LinearLayout&gt; &lt;!-- High score specific settings --&gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:weightSum="100" android:padding="5dip"&gt; &lt;CheckBox android:text="@string/EnableShareScoresCBText" android:id="@+id/EnableShareScoresCB" android:layout_width="fill_parent" android:layout_height="wrap_content"&gt; &lt;/CheckBox&gt; &lt;TextView android:id="@+id/DefaultPlayerNameTv" android:layout_width="wrap_content" android:layout_weight="30" android:layout_height="wrap_content" android:text="@string/pDefName" android:textSize="18sp"&gt; &lt;/TextView&gt; &lt;EditText android:id="@+id/PlayerNameEt" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/pNameDefVal" android:layout_weight="70" android:textSize="18sp" android:maxLength="20"&gt; &lt;/EditText&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; </code></pre> <p>What I want to do is to disable the entire "High score specific settings" layout when the user unchecks the enable high score tracking check box. I tried disabling it by setting the <code>setEnabled</code> to false, but that didn't work at all. Should I be using a viewgroup or something? Is there a refresh method I should run to apply the change?</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.
 

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