在32寸4k显示器上安卓app显示非常模糊

cpu是AMD R5-5500U,显示器为32寸4k,安卓app是糊的,这个要怎么解决?
显示缩放设的200%

可以手动修改安卓的 DPI,参考该教程的这一段:

  1. If you already have Linux installed on your Chromebook, you may skip this step. Otherwise, launch Chrome OS Settings, click on Linux (Beta) on the navigation pane, and click the “Turn on” button. If you can’t find it, your device may not be eligible for Linux, a requirement for this workaround.
  2. Activate “Enable ADB debugging,” which is tucked under “Develop Android apps” in the Linux (Beta) section of Chrome OS Settings.
  3. Launch the Linux terminal from the launcher. ADB is required to modify the Android subsystem. To do this, type and enter the following: sudo apt update && sudo apt install android-tools-adb.
  4. Once ADB is installed, look for the Android subsystem: adb devices.
  5. You should see a device called “emulator-####.” Note that the “#” will vary depending on your device. Copy it.
  6. ADB into the Android subsystem: adb -s emulator-#### shell.
  7. If you did these steps correctly, your terminal should display your device name. For example, my Pixel Slate says nocturne_cheets:/ $
  8. Change the density of Android’s window manager to 120: wm density 120.