在我的Android应用程序中,有一个主题选项。哪里有4张图片。选择一个图像后,我想在整个应用程序中将其用作背景。但我不知道该怎么做以及程序是什么?我尝试了一些东西,但可能这个程序并不完美。我将所选图像存储在sharedPreference通知字节和每个活动内部,我将图像设置为背景。但有时某些活动的背景并没有改变,有时它会导致大图像的内存错误。我可以遵循的最佳程序是什么?我想做的示例图片......
答案 0 :(得分:0)
检查onclicklistener的示例代码以获取图像...... !!!!!
Java类: -
public OnClickListener onclickimage = new OnClickListener() {
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.imageView1:
rlayout.setBackgroundResource(R.drawable.bg);
break;
case R.id.imageView2:
rlayout.setBackgroundResource(R.drawable.bg_evening);
break;
case R.id.imageView3:
rlayout.setBackgroundResource(R.drawable.bg_morning);
break;
case R.id.imageView4:
rlayout.setBackgroundResource(R.drawable.bg_night);
break;
}
}
};
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
布局代码: -
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rlayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/imageView1"
android:src="@drawable/ic_launcher" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/imageView2"
android:src="@drawable/ic_launcher" />
<ImageView
android:id="@+id/imageView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/imageView3"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
愿这个答案可以帮助你..... !!!!!!
你可以为你的循环图像做同样的事情...... !!!!!
或者你可以使用以下主题.. !!!!
如果我没有完成你的任何其他要求,请不要...... !!!