I am trying to use Toast inside OnCLickListner and am getting the following error
--The method makeText(Context, CharSequence, int) in the type Toast is not applicable
Toast.makeText(this, Lname, Toast.LENGTH_SHORT).show();
把this换成你的activity.this
你在内部类里用this,对象不是activity