使用上下文调用另一个类的方法

时间:2012-07-24 16:16:30

标签: android android-context

我有一个带有ImageButton的自定义标题栏,它会生成一个对话框,我希望能够在从对话框和标题栏中选择列表项时在地图(在另一个类中)显示位置(放置itemizedOverlay)地图是在相同的上下文中。我在某处读到了我可以使用上下文调用另一个类的方法。我怎么能这样做?

public class MyTitleBar extends RelativeLayout{

private Context context;


public MyTitleBar(Context context, AttributeSet attrs) {
    super(context, attrs);
    this.context = context;
}

@Override
protected void onFinishInflate() {

    super.onFinishInflate();

    initViews();
}

// set up all the buttons  & clicks
private void initViews() {

    final ImageButton listImgBtn = (ImageButton) findViewById(R.id.more);
    final CharSequence [] listItems = {"Elderly","Events"};

    listImgBtn.setOnClickListener(new  View.OnClickListener() {
        @Override
        public void onClick(View v) {
            if(context instanceof UserHome)
            {
                AlertDialog.Builder builder = new AlertDialog.Builder(context);
                builder.setTitle("List");
                builder.setItems(listItems, new DialogInterface.OnClickListener() {

                @Override
                public void onClick(DialogInterface dialog, int item) {
                    // TODO Auto-generated method stub
                    if(item == 0)
                    {
                        //show location of elderly
                       //DisplayLocation()

                    }
                    else if(item == 1)
                    {
                        //show location of events
                    }
                }
            });
            AlertDialog alert = builder.create();
            alert.show();
          }
        }
    });

1 个答案:

答案 0 :(得分:20)

看起来我可以这样做:

UserHome userhome = (UserHome)context;
userhome.DisplayLocation();

UserHome Activity中的DisplayLocation()。简单。