SeekBar 드래그 바 의 인 스 턴 스

4339 단어 SeekBar드래그 바
본 논문 의 사례 는 SeekBar 드래그 바 의 응용 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
목표 효과
이 페이지 에 드래그 바 의 상태 알림 정보,드래그 바 와 드래그 바 값 을 표시 하 는 정 보 를 놓 습 니 다.드래그 바 를 누 르 면 상태 표시 줄 에 드래그 하고 있 으 며,드래그 바 의 값 을 표시 합 니 다.드래그 바 를 누 르 지 않 을 때 상태 표시:드래그 를 중지 합 니 다.
목표 인터페이스 는 다음 과 같다.



페이지 레이아웃

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:id="@+id/LinearLayout1"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  android:paddingBottom="@dimen/activity_vertical_margin"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  tools:context=".MainActivity"
  android:background="@drawable/b1" >

  <TextView 
    android:id="@+id/status"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:hint="          "
    android:textColor="#FFFFFF"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="20dp"
    android:textSize="24dp"/>

  <SeekBar
    android:id="@+id/seek"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="20dp" />

  <TextView 
    android:id="@+id/show_values"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="20dp"
    android:text="     0"
    android:textColor="#FFFFFF"
    android:textSize="24dp"/>
</LinearLayout>
동작 응답 이벤트

package com.example.seekbar;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.SeekBar;
import android.widget.SeekBar.OnSeekBarChangeListener;
import android.widget.TextView;

public class MainActivity extends Activity 
{
  TextView status,show;
  SeekBar seek=null;

  @Override
  protected void onCreate(Bundle savedInstanceState) 
  {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    status=(TextView) findViewById(R.id.status);
    show=(TextView) findViewById(R.id.show_values);
    seek=(SeekBar) findViewById(R.id.seek);

    //          
    seek.setOnSeekBarChangeListener(new OnSeekBarChangeListener()
    {

      @Override
      public void onStopTrackingTouch(SeekBar arg0) 
      {
        //                 
        status.setText("    ");
      }

      @Override
      public void onStartTrackingTouch(SeekBar arg0) 
      {
        //           ,     
        status.setText("    ");
      }

      @Override
      public void onProgressChanged(SeekBar arg0, int arg1, boolean arg2) 
      {
        //                  ,  arg1       values
        status.setText("    ");
        show.setText("     :"+arg1);
      }
    });
  }

  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
  }

}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기