0

2 つの異なるソースからアレイ アダプターにデータを追加しようとしています。1 つのソースは、ハードコードされた文字列を含むスピナーからのもので、もう 1 つは、ユーザーが独自の文字列を作成して配列に (アダプター経由で) 渡すことができるようにするためのものです。以下は私のコードです。配列アダプターは、渡すことができる引数に応じて 1 つのデータ ソースしか除外できないように見えます........

ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource
(this, R.array.alarmList, android.R.layout.simple_spinner_item );

ここでは、実際の文字列入力が次から収集されていると推測することしかできません....ユーザーがスピナーから選択したアイテムと同様に?ここでいくつかの調査を行いましたが、空白を描いています!!どうもありがとう。アダプターに文字列を入力しようとする私のコードは次のとおりです........

public class NewAlarm extends Activity {

Spinner alarms;
//private Button b =  (Button) findViewById(R.id.btnAddCustom);
final EditText et =  (EditText) findViewById(R.id.edittext);

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.newalarm);
    ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this, R.array.alarmList, android.R.layout.simple_spinner_item );
    adapter.setDropDownViewResource( android.R.layout.simple_spinner_dropdown_item );
    //et.setText("name");
    alarms = (Spinner) findViewById(R.id.cmbAlarms);
    alarms.setAdapter(adapter);
}

public void addAlarm(View view) {
    MainMenu.alarmList.add(new Alarm(alarms.getSelectedItem().toString()));
    Toast.makeText(getApplicationContext(), "Added " +      alarms.getSelectedItem().toString() + " alarm.", Toast.LENGTH_SHORT).show();
    NewAlarm.this.finish();
}

public void addCustomAlarm (View view){

    MainMenu.alarmList.add(new Alarm(et.getText().toString())); 
}

}

そして、これが私のアレイアダプターコードです........

  public View getView(final int position, View convertView, ViewGroup viewGroup) {
      if (convertView == null) {
          LayoutInflater inflater = (LayoutInflater)     context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
          convertView = inflater.inflate(R.layout.alarm_item, null);
      }

みんなありがとう!!

      // Get a handle on the UI controls
      TextView name = (TextView) convertView.findViewById(R.id.txtAlarmName);
      final TextView timeStamp = (TextView) convertView.findViewById(R.id.txtTimeStamp);
      // if the value of the timestamp from the alarm at the position selected is not a null value then set the text label to the alarm timestamp value
      if (MainMenu.alarmList.get(position).getTimeStamp() != null)
          {
            timeStamp.setText(MainMenu.alarmList.get(position).getTimeStamp().toString());
          }
      // Set the alarm name 
      name.setText(listItems.get(position).getName());
      // Get a handle on the button
      Button btnCheckNow = (Button) convertView.findViewById(R.id.btnCheckNow);

      btnCheckNow.setOnClickListener(new OnClickListener() {
          public void onClick(View view) {
              // Set the timestamp of the alarm object at the selected position
              MainMenu.alarmList.get(position).setTimeStamp();
              // Set the timestamp label 
              timeStamp.setText(MainMenu.alarmList.get(position).getTimeStamp().toString());
             }
      });
      return convertView;
}
4

1 に答える 1

0

を呼び出す代わりにArrayAdapter.createFromResource()、アダプタを作成する前に配列をインポートして文字列を追加します。

CharSequence[] array = Arrays.asList(
        getResources().getTextArray(R.array.alarmList));
List<CharSequence> list = new ArrayList<CharSequence>(array);

list.add("custom string");

ArrayAdapter<CharSequence> adapter = new ArrayAdapter<CharSequence>(this, 
        android.R.layout.simple_spinner_item, list);
于 2012-07-25T19:07:58.307 に答える