我在这里和其他地方环顾四周,但似乎找不到解决这个问题的方法。我对 Java 并不陌生,虽然这是我的第一个 android 应用程序。
我正在显示 3 个 ImageButton(一个在另一个上方),需要调整其大小以适应任何屏幕(即,7-10 英寸平板电脑到 4 英寸手机)。我已经弄清楚了这个逻辑,但是我遇到的问题是 7''+ 设备上的图像质量非常糟糕。这是我的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"
android:id="@+id/mainLayout" >
<ImageButton
android:id="@+id/btn_god"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@null"
android:src="@drawable/godtext" />
<ImageButton
android:id="@+id/btn_growth"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:background="@null"
android:src="@drawable/growthtext" />
<ImageButton
android:id="@+id/btn_service"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:background="@null"
android:src="@drawable/servicetext" />
</RelativeLayout>
这是我活动的相关部分:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
int version = VERSION.SDK_INT;
int height = 0;
int width = 0;
if (version < 13){
DisplayMetrics displaymetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
height = displaymetrics.heightPixels;
width = displaymetrics.widthPixels;
} else {
Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
width = size.x;
height = size.y;
}
/**
* Creating all buttons instances
* */
// Dashboard God button
ImageButton btn_god = (ImageButton) findViewById(R.id.btn_god);
btn_god.setAdjustViewBounds(true);
ViewGroup.LayoutParams params = btn_god.getLayoutParams();
params.height = height/4;
params.width = params.height;
btn_god.setLayoutParams(params);
// Dashboard Growth button
ImageButton btn_growth = (ImageButton) findViewById(R.id.btn_growth);
btn_growth.setAdjustViewBounds(true);
params = btn_growth.getLayoutParams();
params.height = height/4;
params.width = params.height;
btn_growth.setLayoutParams(params);
btn_growth.setImageResource(R.drawable.growthtext);
// Dashboard Service button
ImageButton btn_service = (ImageButton) findViewById(R.id.btn_service);
btn_service.setAdjustViewBounds(true);
params = btn_service.getLayoutParams();
params.height = height/4;
params.width = params.height;
btn_service.setLayoutParams(params);
我想做的是拍摄高分辨率图像,并将其缩小以适应较小的屏幕。但是,它似乎正在拍摄低分辨率图像并将其放大以适应更大的屏幕。有没有人遇到过类似的问题?你是怎么解决的?我很感激任何回应!