Androidでアクティビティが作成され、UIがユーザーに表示されるたびに、ボタンが押されたときにボタンを表示するにはどうすればよいですか?
質問する
93 次
2 に答える
1
これで問題ありません:
@Override
public void onStart(){
super.onStart();
Button button = (Button) findViewById(R.id.test_button);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Log.i(TAG, "Clicked");
}
});
// This will NOT trigger the onClickListener!
button.setPressed(true);
}
于 2012-10-11T16:08:50.947 に答える
0
次のコード ie(res/drawable/button.xml) のようなボタン セレクターの状態を使用する必要があります。
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/button_add_to_favorites_active">
</item>
<item android:state_focused="true" android:drawable="@drawable/button_add_to_favorites_active">
</item>
<item android:drawable="@drawable/button_add_to_favorites_active"> //Here set the drawable looks like pressed one.
</item>
</selector>
于 2012-10-11T13:51:04.097 に答える