Android 用のアプリケーションを作成していますが、ImageButton
クリックしたときの可視性を保存するのが困難です。他のトピックを検索しましたが、解決策が見つかりませんでした。
たとえば、クリックすると白くなるボタンがあり、アクティビティまたはビューを切り替えるときにその可視性を保存したい:
OnClickListener oclFavourite = new OnClickListener() {
@Override
public void onClick(View arg0) {
ImageButton favWhite = (ImageButton) findViewById(R.id.favoriwhite);
ImageButton favori = (ImageButton) findViewById(R.id.favorigrey);
favWhite.setVisibility(View.VISIBLE); //The white button I want to save
favourite.setVisibility(View.INVISIBLE); //The initial button
}
};
favori.setOnClickListener(oclFavori);
関数を勉強しようとしましたがSharedPreferences
、保存には成功しましたが、またはTextView
の進め方がわかりません。ImageButton
ImageView