繁体   English   中英

如何将整数传递给类的实例并使用它来调用另一个类的方法?

[英]How do I pass an integer to an instance of a class and use it to call the method of another class?

这是活动 1,它是一个列表视图。 当用户单击一个项目时,我希望单击该项目以启动一个类的实例并将一个 int 值传递给它,该值稍后将在开关中使用。

       @Override
    public void onItemClick(AdapterView<?> adapter, View view,
                int position, long id) {


    switch(position){

   case 0:


       Intent g = new Intent(books.this, SpecificBook.class);
       Bundle b = new Bundle();
       b.putInt("dt", 0);
       g.putExtras(b);
       books.this.startActivity(g);
       break;

    case 1: 
        Intent ex = new Intent(books.this, SpecificBook.class);
       Bundle b1 = new Bundle();
       b1.putInt("dt", 1);
       ex.putExtras(b1);
       books.this.startActivity(ex);
      break;

      //etc.

这是活动 2,它应该检索 int 值并从数据库帮助程序类调用适当的方法。

      public class SpecificBook extends Activity {

       private DatabaseHelper Adapter;

Intent myLocalIntent = getIntent();
 Bundle myBundle = myLocalIntent.getExtras();
  int dt = myBundle.getInt("dt");

 @SuppressWarnings("deprecation")
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
  setContentView(R.layout.listy);


ListView lv = (ListView)findViewById(R.id.listview);     
 Adapter = new DatabaseHelper(this);
 Adapter.open();    
 Cursor cursor = null;


switch(dt){
 case 0:cursor = DatabaseHelper.getbook1Data(); break;
 case 1:cursor = DatabaseHelper.getbook2Data(); break;
  //etc.
}

startManagingCursor(cursor);

等等。

数据库方法是查询。 基本上,我希望书籍类 listview 中的每个项目根据所选项目运行它自己的查询并显示结果。 我收到“找不到源”和运行时异常错误。 我哪里错了? 有没有更好的方法来解决这个问题?

我已经尝试过“getter 和 setter”方式无济于事。 我也在意图的实例上尝试了“putextra”方法,但没有奏效。

最早可以访问 Intent 的是onCreate()

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

    Intent myLocalIntent = getIntent();
    Bundle myBundle = myLocalIntent.getExtras();
    int dt = myBundle.getInt("dt");

您应该检查 Intent 或 Bundle 是否为空,如果您只想要 Intent 中的一项,则可以使用:

Intent myLocalIntent = getIntent();
if(myLocalIntent != null) {
    int dt = myLocalIntent.getIntExtra("dt", -1); // -1 is an arbitrary default value
}

最后,你不需要创建一个新的 Bundle 来在 Intent 中传递值,看起来你只是想传递position ......所以你可以大大缩短你的onItemClick()方法:

@Override
public void onItemClick(AdapterView<?> adapter, View view, int position, long id) {
    Intent g = new Intent(books.this, SpecificBook.class);
    g.putInt("dt", position);
    books.this.startActivity(g);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM