1

imageview で onClick を設定して、別の layout.xml に backgroundresource を設定する方法 アプリを閉じてからもう一度開いても、別の layout.xml の backgroundresource は当時クリックした imageview ですか?

これは、背景にしたい画像を含む私のコードです

public class Main2Activity extends BaseAdapter {
private List<Item> items = new ArrayList<Item>();
private LayoutInflater inflater;

public Main2Activity(Context context) {
    inflater = LayoutInflater.from(context);

    items.add(new Item("Cindvia",      R.drawable.cindvia));
    items.add(new Item("Harugon",      R.drawable.harugon));
    items.add(new Item("Melodist",     R.drawable.melodist));
    items.add(new Item("Nabilaholic",  R.drawable.nabilaholic));
    items.add(new Item("Nat",          R.drawable.nat));
    items.add(new Item("Rona",         R.drawable.rona));
    items.add(new Item("Shanju",       R.drawable.shanju));
    items.add(new Item("Shinta",       R.drawable.shinta_n));
    items.add(new Item("Ve",       R.drawable.ve));
    items.add(new Item("Vienny",       R.drawable.vienny));
}

@Override
public int getCount() {
    return items.size();
}

@Override
public Object getItem(int i) {
    return items.get(i);
}

@Override
public long getItemId(int i) {
    return items.get(i).drawableId;
}

@Override
public View getView(int i, View view, ViewGroup viewGroup) {
    View v = view;
    ImageView picture;
    TextView name;

    if(v == null) {
        v = inflater.inflate(R.layout.activity_main, viewGroup, false);
        v.setTag(R.id.picture, v.findViewById(R.id.picture));
        v.setTag(R.id.text, v.findViewById(R.id.text));
    }

    picture = (ImageView)v.getTag(R.id.picture);
    name = (TextView)v.getTag(R.id.text);

    Item item = (Item)getItem(i);

    picture.setImageResource(item.drawableId);
    name.setText(item.name);

    return v;
}

private class Item {
    final String name;
    final int drawableId;

    Item(String name, int drawableId) {
        this.name = name;
        this.drawableId = drawableId;
    }
}

}

これは、背景を変更したい私の.XMLコードです

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Main2Activity"
android:background="@drawable/nat" >

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="17dp"
    android:shadowColor="#ffb4b4"
    android:shadowDx="2"
    android:shadowDy="2"
    android:shadowRadius="3"
    android:text="@string/eee_dd_mm_yyyy"
    android:textColor="#ffffff"
    android:textSize="17sp" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView2"
    android:layout_centerHorizontal="true"
    android:shadowColor="#ffb4b4"
    android:shadowDx="2"
    android:shadowDy="2"
    android:shadowRadius="4"
    android:text="@string/hh_mm_ss"
    android:textColor="#ffffff"
    android:textSize="37sp" />

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="40sp"
    android:layout_height="40sp"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_marginBottom="17dp"
    android:layout_marginRight="17dp"
    android:src="@drawable/info"
    android:contentDescription="@string/todo"/>

私のワークスペースをすべてダウンロードするためのリンクです。私が使用しているコードを意味します。

ダウンロードする場合は、ファイルをクリックしてダウンロードします

https://drive.google.com/file/d/0B7NPhjxHR4zbT2NaUDBRNnU4cWc/edit?usp=sharing

4

1 に答える 1

1

おそらくSharedPreference、最後ImageViewにクリックしたものを新しい背景に設定する を作成する必要があります。アプリケーションが開いたら、次のように Preference を取得する必要があります。

SharedPreferences myPrefs = this.
                         getSharedPreferences("myPrefs", Context.MODE_PRIVATE);
drawableid = myPrefs.getInt("backgroundResourceId", defaultvalue); 
yourlayout.setBackground(drawableid);  

Google ドキュメントのこの簡単な例を参照してください: Storage Options
この回答を参照してください: Android: 背景画像
を変更可能にする また、これもお読みください: Androidで SharedPreference を使用して背景色を変更する

詳細:
Android で SharedPreferences を使用して値を保存、取得、編集する方法
SharedPreferences ドキュメント Android



を作成するSharedPreferenceには、シンプルで理解しやすいこのチュートリアルに従うことができます:
共有設定を使用した Android ユーザー セッション管理
そして、これ: Android SharedPreferences の例


それを行う方法
正確に何をしなければならないかはわかりませんが、次のようになり
ます: AdapterOnClickListener

@Override
public View getView(int i, View view, ViewGroup viewGroup) {

    // It will be something like this, not sure:
    picture.setOnClickListener(new OnClickListener() {  
        public void onClick(View v) {  
            // This is a Toast to see the position of the selected item.  
            Toast.makeText(getApplicationContext(), "You clicked on the image position: " + i,Toast.LENGTH_LONG).show();  
            // so get the Id with this position  
            int idToBackground = getItemId(position);
            // put in SharedPreferences
            SharedPreferences sp = getSharedPreferences("myApp", Activity.MODE_PRIVATE);  
            SharedPreferences.Editor editor = sp.edit();  
            editor.putInt("NewBackground", idToBackground);  
            editor.commit();
        } 

    });

    return v;
}  

他の方法
で はActivity、アダプタを に設定した後、次のGridViewように作成できますOnItemClickListener

gridView.setAdapter(adapter);    
gridView.setOnItemClickListener(new OnItemClickListener() {  
    @Override   
    public void onItemClick(AdapterView<?> a, View v, int position, long id) {  
        // do some stuff with the selected image  

        // get the id  
        int  idImage = v.getItemId(position); 

        // then put in SharedPref  
        SharedPreferences sp = getSharedPreferences("myApp", Activity.MODE_PRIVATE);  
        SharedPreferences.Editor editor = sp.edit();  
        editor.putInt("NewBackground", idImage);  
        editor.commit();  
    }  
});  

設定を編集するには:

SharedPreferences sp = getSharedPreferences("myApp", Activity.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.putInt("NewBackground", yourDrawableValue);
editor.commit();

最後に、それを取得するには:

SharedPreferences sp = getSharedPreferences("myApp", Activity.MODE_PRIVATE);
int myNewIntValue = sp.getInt("NewBackground", 0);

編集:

コンテキストを取得するには、次のソリューションがあります。
アクティビティ別、ActivityName.this
アプリケーション別の使用、getApplicationContext()
ビュー別の使用、YourView.getContext()

普遍的なものが必要な場合はpublic static thecontextvariable、アクティビティに を持ち、アプリケーション コンテキストを割り当てます。これで、いつでも呼び出すことができますYourActivity.thecontextvariable
お役に立てれば。

于 2013-12-10T10:43:03.970 に答える