am edba1dcd: am 75f0029e: More seek bars in ApiDemos

* commit 'edba1dcd8ddc87a28d6ecb7b5272f6b995ff4024':
  More seek bars in ApiDemos
This commit is contained in:
Alan Viverette
2015-06-01 17:07:13 +00:00
committed by Android Git Automerger
3 changed files with 53 additions and 8 deletions

View File

@@ -14,23 +14,53 @@
limitations under the License. limitations under the License.
--> -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:orientation="vertical"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:paddingTop="16dp"
android:paddingBottom="16dp">
<SeekBar android:id="@+id/seek" <CheckBox
android:id="@+id/enabled"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/enabled" />
<SeekBar
android:id="@+id/seekMin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="100"
android:progress="0"
android:enabled="false" />
<SeekBar
android:id="@+id/seekMax"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="100"
android:progress="100"
android:enabled="false" />
<SeekBar
android:id="@+id/seek"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:max="100" android:max="100"
android:progress="50" android:progress="50"
android:secondaryProgress="75" /> android:secondaryProgress="75" />
<TextView android:id="@+id/progress" <TextView
android:id="@+id/progress"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" /> android:layout_height="wrap_content" />
<TextView android:id="@+id/tracking" <TextView
android:id="@+id/tracking"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" /> android:layout_height="wrap_content" />
</LinearLayout> </LinearLayout>

View File

@@ -983,6 +983,8 @@
<string name="seekbar_tracking_off">Tracking off</string> <string name="seekbar_tracking_off">Tracking off</string>
<string name="seekbar_from_touch">from touch</string> <string name="seekbar_from_touch">from touch</string>
<string name="enabled">Enabled</string>
<string name="ratingbar_rating">Rating:</string> <string name="ratingbar_rating">Rating:</string>
<string name="popup_menu_search">Search</string> <string name="popup_menu_search">Search</string>

View File

@@ -18,6 +18,9 @@ package com.example.android.apis.view;
import android.app.Activity; import android.app.Activity;
import android.os.Bundle; import android.os.Bundle;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.SeekBar; import android.widget.SeekBar;
import android.widget.TextView; import android.widget.TextView;
@@ -39,10 +42,20 @@ public class SeekBar1 extends Activity implements SeekBar.OnSeekBarChangeListene
setContentView(R.layout.seekbar_1); setContentView(R.layout.seekbar_1);
mSeekBar = (SeekBar)findViewById(R.id.seek); mSeekBar = (SeekBar) findViewById(R.id.seek);
mSeekBar.setOnSeekBarChangeListener(this); mSeekBar.setOnSeekBarChangeListener(this);
mProgressText = (TextView)findViewById(R.id.progress); mProgressText = (TextView) findViewById(R.id.progress);
mTrackingText = (TextView)findViewById(R.id.tracking); mTrackingText = (TextView) findViewById(R.id.tracking);
((CheckBox) findViewById(R.id.enabled)).setOnCheckedChangeListener(
new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
findViewById(R.id.seekMin).setEnabled(isChecked);
findViewById(R.id.seekMax).setEnabled(isChecked);
mSeekBar.setEnabled(isChecked);
}
});
} }
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromTouch) { public void onProgressChanged(SeekBar seekBar, int progress, boolean fromTouch) {