2

我正在尝试从我的 android 应用程序上的 Spinner 获取值并将其转换为字符串,以便我可以将它作为 Bundle 中的数据项移动到另一个活动。我已经成功地使用getText().toString();方法组合移动了 EditText 值。我正在寻找相同的结果,但现在使用 Spinner 项目,但到目前为止还没有成功。

这是代码:

当用户在方法中选择按钮时调用此onClick方法:

public void commitData(){
    Bundle bundle = new Bundle();
    bundle.putString("key", txtBuildingName.getText().toString()); //Gets the TEXT that the TEXTVIEW was holding converts it to a String and adds to the Extras bundle

    Bundle bundle1 = new Bundle();
    bundle1.putString("key1", txtDescription.getText().toString()); // Same again

    Bundle bundle2 = new Bundle();
    bundle2.putString("key2", type.getItemAtPosition(type.getSelectedItemPosition()).toString());

    Bundle bundle3 = new Bundle();
    bundle3.putString("key3", project.getItemAtPosition(project.getSelectedItemPosition()).toString());

    Intent newIntent = new Intent(this.getApplicationContext(), DataSummary.class);
    newIntent.putExtras(bundle);
    newIntent.putExtras(bundle1);
    startActivityForResult(newIntent, 0);
}

我没有从项目中得到任何结果,并且使用type.getItemAtPosition().getSelectedItemPosition()).toString();和项目相同的类型代码行。

下面显示的是从输入表单接收和输出此数据的 Activity 的代码。

文本视图结果名称;TextView 结果描述;文本视图结果类型;文本视图结果项目;

public void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState); 
   setContentView(R.layout.activity_data_summary);

   //Check if there is anything in the 'bundle' and if not produce message - AVOIDS NULLPOINTEREXCEPTION when navigating to Activity
   Bundle bundle = this.getIntent().getExtras();     
   if (bundle != null){       
   String name = bundle.getString("key");
   String description = bundle.getString("key1"); //gets data from DataEntry activity
   String type = bundle.getString("key2");
   String project = bundle.getString("key3");

   resultName=(TextView)findViewById(R.id.resultName);  //adds the TextViews to the activity
   resultType=(TextView)findViewById(R.id.resultType);
   resultDescription=(TextView)findViewById(R.id.resultDesc);
   resultProject=(TextView)findViewById(R.id.resultProject);

   resultName.setText(name); // Fills the textviews with imported data
   resultType.setText(type);
   resultDescription.setText(description);
   resultProject.setText(project);
   }    

   else
   {
       Toast.makeText(DataSummary.this,"Received no data yet!", Toast.LENGTH_LONG).show();
   }

}

任何人都知道如何成功地从 Spinner 项目中收集数据?

4

1 回答 1

4

为什么要传递不同的捆绑包?我猜,在您接收活动的一边,您只会得到第一个捆绑包。

通过以下编辑尝试您的代码:

public void commitData(){

    Bundle bundle = new Bundle();
    bundle.putString("key", txtBuildingName.getText().toString()); //Gets the TEXT that the TEXTVIEW was holding converts it to a String and adds to the Extras bundle
    bundle.putString("key1", txtDescription.getText().toString()); // Same again
    bundle.putString("key2", type.getItemAtPosition(type.getSelectedItemPosition()).toString());
    bundle.putString("key3", project.getItemAtPosition(project.getSelectedItemPosition()).toString());
于 2012-09-14T14:59:52.903 回答