简体   繁体   中英

Can't be resolved as a type android Eclipse

It is saying that popupWindow.OnDismissListner Can't be resolved as a type and when I hover the mouse over it the only option I get is to make it an interface, which isn't what I want to do.

public class MainActivity extends Activity implements OnItemSelectedListener,     
PopupWindow.OnDismissListener, View.OnClickListener {

I am unsure exactly what is wrong. I imported android.widget.PopupWindow.OnDismissListener; and it still is giving the error. I am trying to get a menu to pop up with a list of dice and when a dice is clicked it will return a matching int value based on how many sides the dice has. I have no other errors except the one mentioned above.

Try replacing

import android.widget.PopupWindow.OnDismissListener;

with

import android.widget.PopupWindow;

Or simply use OnDismissListener in your code (not PopupWindow.OnDismissListener ).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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