Android UI 구성 요소 Spinner 드 롭 다운 목록 상세 설명

4809 단어 AndroidSpinner
스 피 너 드 롭 다운 목록
이 레이아웃 에 대응 하 는 관계 도:
这里写图片描述
상용 속성:android:entries(spinner 가 표시 할 문자열 자원 을 지정 합 니 다.strings 자원 파일 에 정 의 된 문자열 자원 이 어야 합 니 다.android:spinner Mode(spinner 모드,매 거 진 값 은 두 개의 값 dialog 팝 업 창 표시 와 dropdown 드 롭 다운 드 롭 다운 드 롭 다운 표시)android:dropDownWidth(드 롭 다운 상자 의 너비,단 위 는 보통 dp)android:prompt(spinner Mode 의 값 이 dialog 일 때 팝 업 대화 상자 식 아래 목록 의 알림 입 니 다.하면,만약,만약...
spinner Mode 의 값 은 dropdown 일 때 효과 가 없습니다.메모:이 값 은 직접 문자열 을 사용 할 수 없습니다.
인용 을 사용 해 야 합 니 다(문자열 자원))
1.entries 를 통 해 데이터 항목 을 설정 하고 values 폴 더 의 strings 에 데이터 값 을 추가 합 니 다.
这里写图片描述
strings.xml 에 array 데이터 항목 을 추가 한 다음 entries 에 설정 하면 해당 하 는 값 을 설정 할 수 있 습 니 다.

<Spinner
    android:layout_width="match_parent"
    android:entries="@array/data"//        
    android:layout_height="wrap_content">
 </Spinner>
2.android:spinnerMode 설정:

<Spinner
    android:id="@+id/spinner"
    android:layout_width="match_parent"
    android:entries="@array/data"
    android:spinnerMode="dialog"
    android:layout_height="wrap_content">
  </Spinner>

dialog 값 을 탄 상자 로 표시 합 니 다.
这里写图片描述
값 이 dropdown 이면 다음 과 같 습 니 다:
这里写图片描述
android:dropDownWidth 드 롭 다운 폭 설정

<Spinner
    android:id="@+id/spinner"
    android:layout_width="match_parent"
    android:entries="@array/data"
    android:spinnerMode="dropdown"
    android:dropDownWidth="70dp"
    android:layout_height="wrap_content">
  </Spinner>

효 과 는 다음 그림 과 같 습 니 다:
这里写图片描述
데이터 원본 가 져 오 는 방법:Array Adapter 어댑터 를 통 해 데이터 설정>
어댑터 란 무엇 입 니까?컨트롤 을 데 이 터 를 불 러 오 는 과정 에서 같은 부분 을 코드 로 추출 하고 불 러 올 때마다 이 코드 를 호출 하여 생 성 합 니 다.
되 돌 릴 내용 은 금 형 과 유사 합 니 다.
Array Adapter 에 대한 간단 한 설명:
ArrayAdapter adapter = new ArrayAdapter(this,android.R.layout.simple_spinner_dropdown_item,data);
Array Adapter 구조 방법 에 대한 설명:
1、ArrayAdapter(context, resource, objects)
매개 변수 1:상하 문 대상
인자 2:레이아웃 파일 의 id 입 니 다.이 레이아웃 파일 은 있 고 TextView 탭 만 있 을 수 있 습 니 다.
매개 변수 3:원본 데이터,List 집합 또는 배열 모두 가능 합 니 다.
2、ArrayAdapter(context, resource, textViewResourceId, objects)
매개 변수 1:상하 문 대상
인자 2:레이아웃 파일 의 id,이 레이아웃 파일 에 최소한 TextView 탭 이 있 음 을 주의 하 십시오.
매개 변수 3:매개 변수 2 레이아웃 파일 에 데 이 터 를 표시 할 TextView 의 id
매개 변수 4:원시 데이터,List 집합 또는 배열 모두 가능 합 니 다.

public class MainActivity extends AppCompatActivity {
  private String[] data;
  private List<String> data1;
  private Spinner spinner;
  private ArrayAdapter<String> adapter;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.spinner);
    spinner = (Spinner)findViewById(R.id.spinner);
    data = getResources().getStringArray(R.array.data);
    data1 = new ArrayList<>();
    for(int i = 1; i < 10; i++){
      data1.add("   " + i +" ");
    }
    //data     data1,             
    adapter = new ArrayAdapter<String>(this,android.R.layout.simple_spinner_dropdown_item,data);
    spinner.setAdapter(adapter);
  }
}

감청 사건
Spinner 에 사용 되 는 감청 이벤트:setOnitem Selected Listener(Onitem Selected Listener listener)

public class SpinnerActivity extends Activity implements OnItemSelectedListener {

  /**
  *  item    ,      
  */
  public void onItemSelected(AdapterView<?> parent, View view, 
      int pos, long id) {
    // An item was selected. You can retrieve the selected item using
    // parent.getItemAtPosition(pos)
  }
  /**
  *            ,       ,    adapter.clear()      ,      
  *  ,      
  */
  public void onNothingSelected(AdapterView<?> parent) {
    // Another interface callback
  }
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기