public class AccountSetupActivity extends Activity implements OnClickListener {
ImageButton fbButton;
@Override
public void onClick(View v) {
Toast.makeText(this, "FB clicked", Toast.LENGTH_SHORT).show();
Drawable fbLight = getResources().getDrawable(R.drawable.fborange);
fbButton.setBackgroundDrawable(fbLight);
// fbButton.setBackgroundResource(0);
}
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.setupaccounts);
fbButton = (ImageButton) findViewById(R.id.fbButton);
fbButton.setOnClickListener(this);
}
}
user1871936
问问题
65 次