我沒有Nexus 5x設備,但我正在使用模擬器。Android模擬器Nexus 5x加載錯誤的可繪製大小?
編輯:從Nexus 5x用戶確認。它不是一個模擬器錯誤。
問題:
在Nexus 5x應用程序加載不正確的大小繪圖。雖然在Nexus 5上沒問題。
我有一個形象的原始尺寸1440x2560。它調整爲繪製-xxhdpi - 1080×1920
登錄返回我一些有趣的東西太多:
Nexus 5:
Display Width= 1080 Display Height= 1776
Background Width= 1080 Background Height= 1920
Nexus 5x:
Display Width= 1080 Display Height= 1794
Background Width= 945 Background Height= 1680
我的代碼。
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myapp.backgroundisfdupyo">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
MainActivity.java
public class MainActivity extends Activity {
private static final String TAG = "Main";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
logScreenSize();
}
private void logScreenSize() {
DisplayMetrics displayMetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
int displayW = displayMetrics.widthPixels;
int displayH = displayMetrics.heightPixels;
Log.e(TAG,"displayW= " + displayW + " displayH= "+ displayH);
Drawable bckg = getResources().getDrawable(R.drawable.background);
Log.e(TAG,"Background Width= " + bckg.getMinimumWidth() + " Background Height= "+ bckg.getMinimumHeight());
}
@Override
protected void onStart() {
super.onStart();
toggleHideyBar();
}
public void toggleHideyBar() {
int newUiOptions = 0;
// Navigation bar hiding: Backwards compatible to ICS.
if (Build.VERSION.SDK_INT >= 14) {
newUiOptions ^= View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
}
// Status bar hiding: Backwards compatible to Jellybean
if (Build.VERSION.SDK_INT >= 16) {
newUiOptions ^= View.SYSTEM_UI_FLAG_FULLSCREEN;
}
if (Build.VERSION.SDK_INT >= 18) {
newUiOptions ^= View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
}
getWindow().getDecorView().setSystemUiVisibility(newUiOptions);
//END_INCLUDE (set_ui_flags)
}
activity_main.xml中
...
<FrameLayout
android:id="@+id/backgroundFrame"
android:layout_width="wrap_content"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent">
<ImageView
android:id="@+id/backgroundImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:src="@drawable/background" />
</FrameLayout>
編輯:
請求的資源樹。
\drawable-xxxhdpi\background.jpg - 1440 x 2560
\drawable-xxhdpi\background.jpg - 1080 x 1920
\drawable-xhdpi\background.jpg - 720 x 1280
\drawable-hdpi\background.jpg - 540 x 960
\drawable-mdpi\background.jpg - 360 x 640
\drawable-ldpi\background.jpg - 270 x 480
編輯:
https://android-developers.googleblog.com/...
它具有560 dpi的,其 xxhdpi和xxxhdpi初級密度水桶之間落入的量化密度。對於Nexus 6, 平臺將縮小xxxhdpi資產,但如果這些資源不是 可用,那麼它將擴大xxhdpi資產。
如何關閉它?我希望我的項目只能從我的預製圖像中拍攝圖像,我不希望它放大/縮小某些東西。
嘗試scaleType'fitCenter'或顯示res文件夾樹 – egoldx
看起來像您的ImageView高度不匹配match_parent。嘗試使用match_parent進行設置。我在你的FrameLayout中看到一個約束,這意味着你在ConstraintLayout中使用FrameLayout,爲什麼?嘗試使用其中的一個 – Skullper
@PavliukR我把它從FrameLayout中取出,它確實像Nexus 5x一樣填滿了屏幕,但日誌仍然表示加載的背景圖像是Width = 945 Height = 1680,它應該像Nexus 5一樣加載寬度= 1080高度= 1920。我認爲它只是拉伸了形象。 – paakjis