我制作了一个480x2500的Photoshop图片,我想把它放在我的一个活动中。 但是,安装.apk后,图像质量较差。我真的尝试过我在google上找到的所有内容,没有结果。我不是一个经验丰富的程序员,所以请你花时间解释一切可以帮助我的东西。 这是我的代码:
XML:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip"
android:tileMode="repeat"
android:dither="true">
<ImageView
android:id="@+id/imageView2"
android:layout_width="fill_parent"
android:layout_height="1166dp"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/secondbutton3" />
Java代码
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.PixelFormat;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.view.Menu;
import android.view.WindowManager;
public class Secondbutton extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_secondbutton);
getWindow().setFormat(PixelFormat.RGBA_8888);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_DITHER);
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
Bitmap gradient = BitmapFactory.decodeResource(getResources(), R.drawable.secondbutton, options);
findViewById(R.id.imageView2).setBackgroundDrawable(new BitmapDrawable(gradient));
}
@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_secondbutton, menu);
return true;
}
}
我试图擦除图像的一小部分(具有透明背景),但没有结果。 谢谢。
答案 0 :(得分:1)
如何从photoshop保存图像? 透明的png! 随着网络出口
答案 1 :(得分:1)
答案 2 :(得分:0)
这段代码对我有用
BitmapFactory.Options myOptions = new BitmapFactory.Options();
myOptions.inDither = true;
myOptions.inScaled = false;
myOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;
myOptions.inDither = false;
myOptions.inPurgeable = true;
Bitmap preparedBitmap = BitmapFactory.decodeResource(yourAppName.getSharedApplication().getResources(),
R.drawable.yourImage, myOptions);
Drawable background = new BitmapDrawable(preparedBitmap);
((LinearLayout) findViewById(R.id.yourLayoutId))
.setBackgroundDrawable(background);