Android 제3자 오픈 소스 드 롭 다운 상자 NiceSpinner 사용 설명

안 드 로 이 드 네 이 티 브 의 드 롭 다운 상자 Spinner 는 기본적으로 안 드 로 이 드 개발 이 드 롭 다운 옵션 에 대한 디자인 수 요 를 만족 시 킬 수 있 지만,현재 점점 유행 하 는 드 롭 다운 상 자 는 안 드 로 이 드 네 이 티 브 가 제공 하 는 드 롭 다운 상자 Spinner 가 제공 하 는 디자인 스타일 에 만족 하지 않 고 맞 춤 형 또는 제3자 디자인 의 드 롭 다운 상자 Spinner 로 바 뀌 고 있다.
NiceSpinner 는 제3자 오픈 소스 의 드 롭 다운 상자 Spinner 입 니 다.github 에 있 는 프로젝트 홈 페이지 는 다음 과 같 습 니 다.https://github.com/arcadefire/nice-spinner
 NiceSpinner 의 원래 디자인 효 과 는 그림 과 같다. 

그러나 일반적으로 개발 자 들 은 드 롭 다운 상자 에 나타 날 수 있 는 텍스트 와 스타일 에 대해 2 차 개발 을 해 야 합 니 다.예 를 들 어 NiceSpinner 가 선택 한 텍스트 색상 이나 드 롭 다운 팝 업 상자 에 있 는 텍스트 에 변화 가 있 기 를 원한 다 면 NiceSpinner code 프로젝트 의 NiceSpinner BaseAdapter 를 다시 두 번 맞 춰 야 합 니 다.NiceSpinner BaseAdapter 의 getView 가 되 돌아 오 는 view 표현 형식 은 드 롭 다운 상자 의 결과 입 니 다. 

//              ,              。
  //zhang phil   
  @Override
  @SuppressWarnings("unchecked")
  public View getView(int position, View convertView, ViewGroup parent) {
    TextView textView;

    if (convertView == null) {
      convertView = View.inflate(mContext, R.layout.spinner_list_item, null);
      textView = (TextView) convertView.findViewById(R.id.tv_tinted_spinner);

      if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
        textView.setBackground(ContextCompat.getDrawable(mContext, mBackgroundSelector));
      }

      convertView.setTag(new ViewHolder(textView));
    } else {
      textView = ((ViewHolder) convertView.getTag()).textView;
    }

    textView.setText(getItem(position).toString());
    textView.setTextColor(mTextColor);
    
    //    zhang phil   ,             。
    textView.setTextColor(Color.RED);

    return convertView;
  } 
수정 후,테스트 의 MainActivity.Java 를 작은 demo 프 리 젠 테 이 션 으로 작성 합 니 다:

package zhangphil.demo;

import java.util.Arrays;
import java.util.LinkedList;
import org.angmarch.views.NiceSpinner;
import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;


public class MainActivity extends Activity {
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);

 setContentView(R.layout.activity_main);

 NiceSpinner niceSpinner = (NiceSpinner) findViewById(R.id.nice_spinner);
 niceSpinner.setTextColor(Color.GREEN);

 LinkedList<String> data=new LinkedList<>(Arrays.asList("Zhang", "Phil", "@", "CSDN"));
 niceSpinner.attachDataSource(data);
 } 
}
레이아웃 파일:

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context="zhangphil.demo.MainActivity" >

  <org.angmarch.views.NiceSpinner
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:id="@+id/nice_spinner" />

</RelativeLayout>

코드 실행 결과: 


나 는 NiceSpinner 의 코드 라 이브 러 리(library 와 인 스 턴 스 demo)를 모두 파일 디 렉 터 리 push 로 github 위 에 올 렸 다.프로젝트 홈 페이지 는:https://github.com/zhangphil/zhangphil-nice-spinner이다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기