Android EditText 입력 상 자 를 드 롭 다운 하고 최근 5 개의 과거 기록 을 저장 합 니 다.
뒤에 과거 기록 을 비 우 는 탭 이 추가 되 었 습 니 다.배경 배열 을 업데이트 할 때마다 배열 의 다음 탭 은 과거 기록 을 비 우 는 것 입 니 다.
s_btnDown.setOnClickListener(this); //
case R.id.btnDown:
showListPopulWindow(); // PopuWindow
break;
클릭 후 PopuWindow 함 수 를 터치 합 니 다.즉,드 롭 다운 상 자 를 TextBox 탭 아래 에 연결 합 니 다.
private void showListPopulWindow() {
final DeviceKeySecretManager list = ((MainActivity)getActivity()).deviceKeySecretManager;//
final ListPopupWindow listPopupWindow;
listPopupWindow = new ListPopupWindow(getActivity());
listPopupWindow.setAdapter(new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, list.getKeyList()));// android ,
listPopupWindow.setAnchorView(s_etAppKey); // , mEditText
listPopupWindow.setModal(true);
listPopupWindow.setOnItemClickListener(new AdapterView.OnItemClickListener() { //
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
if (list.KeySecretSum==i){
list.Clear(); //
s_etAppKey.setText(""); // EditText
s_etAppSecret.setText("");
}else{
s_etAppKey.setText(list.getKeyList()[i]); // EditText
s_etAppSecret.setText(list.getSecretList()[i]);
}
listPopupWindow.dismiss(); // ,
}
});
listPopupWindow.show(); // ListPopWindow
}
키 관리의 논리 클래스:전송 에 성공 한 후 과거 키 정 보 를 캐 시 하고 나중에 드 롭 다운 목록 에 연결 하 는 데 사용 되 며,앱 종료 와 처음 불 러 올 때 데 이 터 를 캐 시 에 저장 하고 추출 하기 위해 서 입 니 다.
/**
*
* 5 , 5 ( )。
*/
class DeviceKeySecretManager {
public DeviceKeySecretManager() {
CurrentSaveIndex = 0;
}
public String[] getKeyList() {
return KeyList;
}
public String[] getSecretList() {
return SecretList;
}
/**
* key secret
* 1、 key, secret ,
* 2、 key/secret 。
*/
public void addBufferKeyAndSecret(String key, String secret) {
if (IntegerConversion.UseLoop(KeyList,key)) {
int index=0;
for (int i=0;i<KeyList.length;i++) {
if (KeyList[i].equals(key)){
index=i;
break;
}
}
KeyList[index]=key;
SecretList[index]=secret;
} else {
if (KeySecretSum == 5) {
CurrentSaveIndex = CurrentSaveIndex == 5 ? 0 : CurrentSaveIndex;
KeyList[CurrentSaveIndex] = key;
SecretList[CurrentSaveIndex] = secret;
CurrentSaveIndex++;
} else {
KeyList[CurrentSaveIndex] = key;
SecretList[CurrentSaveIndex] = secret;
CurrentSaveIndex++;
KeySecretSum++;
KeyList[CurrentSaveIndex] = " ";
}
}
}
public void Clear() {
CurrentSaveIndex = 0;
KeySecretSum = 0;
for (int i = 0; i < KeyList.length; i++) {
KeyList[i] = null;
}
for (int i = 0; i < SecretList.length; i++) {
SecretList[i] = null;
}
}
public int CurrentSaveIndex = 0; //
public int KeySecretSum = 0; //key , 5 。
private String[] KeyList = new String[6];
private String[] SecretList = new String[5];
}
앱 이 종료 되 고 처음 불 러 올 때 데 이 터 를 로 컬 에서 저장 하고 추출 합 니 다.
/**
*
*/
private void getSavedPreference() {
try {
SharedPreferences pref = this.getSharedPreferences(getResources().getString(R.string.app_name), MODE_PRIVATE);
int sum=pref.getInt("KeySecretSum", 0);
for (int i=0;i<=sum;i++){
deviceKeySecretManager.getKeyList()[i]=pref.getString("Key"+i, "");
}
for (int i=0;i<sum;i++){
deviceKeySecretManager.getSecretList()[i]=pref.getString("Secret"+i, "");
}
deviceKeySecretManager.CurrentSaveIndex=sum==5?0:sum;
deviceKeySecretManager.KeySecretSum=sum;
} catch (Exception ex) {
}
}
/**
*
* */
private void setSavePreference() {
try {
SharedPreferences pref = getSharedPreferences(getResources().getString(R.string.app_name), MODE_PRIVATE);
SharedPreferences.Editor edit = pref.edit();
edit.putInt("KeySecretSum", deviceKeySecretManager.KeySecretSum); //
for (int i=0;i<=deviceKeySecretManager.KeySecretSum;i++){
edit.putString("Key"+i, deviceKeySecretManager.getKeyList()[i]);
}
for (int i=0;i<deviceKeySecretManager.KeySecretSum;i++){
edit.putString("Secret"+i, deviceKeySecretManager.getSecretList()[i]);
}
edit.commit();
} catch (Exception ex) {
}
}
다음은 발송 이 성공 한 후의 업무 논리 입 니 다.
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btnSendData:
if (!DeviceManager.getInstance().DeviceIsConnected()) {
tu.ToastShow(context, " , 。");
return;
}
if (DeviceManager.getInstance().DeviceIsBusy()) {
tu.ToastShow(context, " , ...");
return;
}
try {
String key,secret;
key=s_etAppKey.getText().toString();
secret=s_etAppSecret.getText().toString();
if (key.length()<=0||secret.length()<=0||
TextUtils.isEmpty(key)||TextUtils.isEmpty(secret)){
tu.ToastShow(context, " !");
return;
}
// , 。
int nResult = DeviceManager.getInstance().WriteRTKData(context, new byte[]{});
if (nResult > 0) {
tu.ToastShow(context, " ");
((MainActivity)getActivity()).deviceKeySecretManager.addBufferKeyAndSecret(key,secret);
}
} catch (Exception ex) {
tu.ToastShow(context, " !");
}
break;
case R.id.btnClearData: //
s_etAppKey.setText("");
s_etAppSecret.setText("");
break;
case R.id.btnDown:
showListPopulWindow(); // PopuWindow
break;
default:
break;
}
}
요약:위의 업무 분석 을 통 해 코드 가 실현 되면 구체 적 인 수 요 를 실현 하고 최근 5 개의 역사 기록 을 저장 할 수 있다.
사실 쓰기 프로그램 에 있어 어 려 운 것 은 문법 과 기교 가 아니 라 프로 그래 밍 사상 이다.같은 문제/수요 에 대해 서로 다른 해결 방법 이 있 고 누구 도 누구의 방법 이 틀 렸 다 고 말 할 수 없고 누구의 방법 이 지금까지 가장 효과 적 이 라 고 말 할 수 밖 에 없다.
Android EditText 입력 상자 의 드 롭 다운 을 실현 하고 최근 5 개의 과거 기록 을 저장 하 는 데 대한 자세 한 내용 을 소개 합 니 다.더 많은 Android EditText 입력 상자 내용 은 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 도 많은 지원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.