Skip to content

Instantly share code, notes, and snippets.

@tatuas
Last active December 20, 2015 14:49
Show Gist options
  • Save tatuas/6150022 to your computer and use it in GitHub Desktop.
Save tatuas/6150022 to your computer and use it in GitHub Desktop.
Android SDKのAdapterView.SetOnItemClickListenerから ActivityのViewパーツをさわる
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
Button button1 = (Button) parent.getRootView().findViewById(R.id.button1);
button1.setTextColor(android.graphics.Color.RED);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment