我在 A.Class 中声明了一个按钮并设置为禁用。
public static Button s1=(Button)findViewById(R.id.sn1);
s1.setEnabled(false);
现在我想在另一个类(B.class)中启用这个按钮 我尝试通过给 Button s2=A.s1; 来启用这个按钮;但它抛出一个错误,说“无法从类型 Activity 对非静态方法 findViewById(int) 进行静态引用”
请帮助我纠正错误
`First Class:
public class Mapper extends Activity implements OnClickListener
{
public static int sng=0,c=0;
public static double lat;
public static double lon;
public String placenametemp;
public Bundle savedInstanceState;
public static int chk= MapMe.check;
LocationManager locman1= MapMe.locman;
MyOwnLocationOverlay mylocover=MapMe.myLocationOverlay;
public MediaPlayer msong=MapMe.mp;
***public Button s1=(Button)findViewById(R.id.sn1);***
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Add Click listeners for all buttons
View firstButton = findViewById(R.id.geocode_button);
firstButton.setOnClickListener(this);
View secondButton = findViewById(R.id.latlong_button);
secondButton.setOnClickListener(this);
View thirdButton = findViewById(R.id.presentLocation_button);
thirdButton.setOnClickListener(this);
View selectsong=findViewById(R.id.song_select);
selectsong.setOnClickListener(this);
s1.setOnClickListener(this);
s1.setEnabled(false);
}
}
Second Class :
public class MapMe extends MapActivity implements LocationListener
{
Button s1=(Button)findViewById(R.id.sn1);
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE); // Suppress title bar to give more space
setContentView(R.layout.mapme);
updateGPSprefs();
// Set up location manager for determining present location of phone
locman = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
// Listener for GPS Status...
final GpsStatus.Listener onGpsStatusChange = new GpsStatus.Listener(){
public void onGpsStatusChanged(int event){
switch(event){
case GpsStatus.GPS_EVENT_STARTED:
// Started...
break;
case GpsStatus.GPS_EVENT_FIRST_FIX:
// First Fix...
Toast.makeText(MapMe.this, "GPS has First fix",
Toast.LENGTH_LONG).show();
break;
case GpsStatus.GPS_EVENT_STOPPED:
// Stopped...
break;
case GpsStatus.GPS_EVENT_SATELLITE_STATUS:
// Satellite update
break;
}
GpsStatus status = locman.getGpsStatus(null);
Iterable<GpsSatellite> satlist = status.getSatellites();
}
};
public void fu(double a,double b,double c,double d)
{
if((val==0)&&(val1==0))
{
mp.reset();
try {
check=1;
System.out.println("matched");
mp.setDataSource(link1);
mp.prepare();
mp.start();
Toast.makeText(MapMe.this, "playing", Toast.LENGTH_LONG).show();
System.out.println("Song button1");
***s1.setEnabled(true);***
System.out.println("Song button");
}
catch(Exception e)
{
}
}
`