我有一个按钮,每次单击它时基本上都会更改 TextView。是否可以将动画与此相关联?我看过诸如 3D 翻转之类的东西,但它们对我来说似乎有点太先进了。有更简单的建议吗?
final Button button1 = (Button) findViewById(R.id.button1);
final TextView textView = (TextView) findViewById(R.id.text_random_text);
button1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
textView.setText(getNextRandomCuisine());
}
});