gpt4 book ai didi

android - 在另一个 Layout.xml 和 Activity 上设置背景资源

转载 作者:行者123 更新时间:2023-11-30 03:13:47 26 4
gpt4 key购买 nike

如何在 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

最佳答案

也许你应该创建一个 SharedPreference设置最后一个 ImageView点击新背景。当您的应用程序打开时,您应该像这样选择首选项:

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

请参阅 Google 文档中的这个简单示例: Storage Options
看到这个答案: Android: make background image changable
另请阅读: Changing background colour with SharedPreference in Android

更多信息:
How to use SharedPreferences in Android to store, fetch and edit values
SharedPreferences Documentation Android


例子
创建 SharedPreference ,你可以跟着这个教程,简单易懂:
Android User Session Management using Shared Preferences
还有这个:Android SharedPreferences Example


方法
我不确定你必须做什么,但它会是这样的:
在你的Adapter , 设置 OnClickListener :

@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);

编辑:

要获得上下文,您有以下解决方案:
按 Activity ,使用 ActivityName.this
按应用程序,使用 getApplicationContext()
按 View ,使用 YourView.getContext()

如果您需要通用的东西,请使用 public static thecontextvariable在您的 Activity 中并分配应用程序上下文。有了这个,您可以随时调用 YourActivity.thecontextvariable .
希望这会有所帮助。

关于android - 在另一个 Layout.xml 和 Activity 上设置背景资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20492013/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com