在我的 android 应用程序的 galaxy 选项卡 3 中未显示大图标
Not displaying big icons in galaxy tab 3 in my android application
你好,下面的布局图标显示很小,而且图标没有占满screen.I想要全屏占据图标,图标应该大一点!
如果我使用的是小型手机,它会占据全屏,并且图标也会正确显示size.when我正在这个设备上安装我的应用程序,但出现了两个问题。
谁能帮我解决这个问题。
提前致谢
检查 official documentation 以获得明确的信息。
任何 android phone 都具有这六种屏幕密度之一。
ldpi Resources for low-density (ldpi) screens (~120dpi).
mdpi Resources for medium-density (mdpi) screens (~160dpi).
(This is the baseline density.)
hdpi Resources for high-density (hdpi) screens (~240dpi).
xhdpi Resources for extra-high-density (xhdpi) screens (~320dpi).
xxhdpi Resources for extra-extra-high-density (xxhdpi) screens (~480dpi).
xxxhdpi Resources for extra-extra-extra-high-density (xxxhdpi) uses (~640dpi).
Use this for the launcher icon only, see note above.
为不同的屏幕分辨率创建不同大小的图标,并将这些图标放入 yourProject/app/src/main/res/drawable-mdpi or -hdpi or -xhdpi or -xxhdip
文件夹。
我认为这里的问题是即使平板电脑具有高分辨率,但由于屏幕尺寸大,它的密度仍然很低。因此,平板电脑正在从低密度文件夹中选取图像,这使得它在大屏幕上看起来很小。
讨论 here 阐明了这个问题。基本上,您需要为平板电脑的宽度创建单独的可绘制文件夹。前任。 drawable-sw600dp
和 drawable-sw720dp
等等
参考developer guide了解更多详情。
你好,下面的布局图标显示很小,而且图标没有占满screen.I想要全屏占据图标,图标应该大一点!
如果我使用的是小型手机,它会占据全屏,并且图标也会正确显示size.when我正在这个设备上安装我的应用程序,但出现了两个问题。
谁能帮我解决这个问题。
提前致谢
检查 official documentation 以获得明确的信息。
任何 android phone 都具有这六种屏幕密度之一。
ldpi Resources for low-density (ldpi) screens (~120dpi).
mdpi Resources for medium-density (mdpi) screens (~160dpi).
(This is the baseline density.)
hdpi Resources for high-density (hdpi) screens (~240dpi).
xhdpi Resources for extra-high-density (xhdpi) screens (~320dpi).
xxhdpi Resources for extra-extra-high-density (xxhdpi) screens (~480dpi).
xxxhdpi Resources for extra-extra-extra-high-density (xxxhdpi) uses (~640dpi).
Use this for the launcher icon only, see note above.
为不同的屏幕分辨率创建不同大小的图标,并将这些图标放入 yourProject/app/src/main/res/drawable-mdpi or -hdpi or -xhdpi or -xxhdip
文件夹。
我认为这里的问题是即使平板电脑具有高分辨率,但由于屏幕尺寸大,它的密度仍然很低。因此,平板电脑正在从低密度文件夹中选取图像,这使得它在大屏幕上看起来很小。
讨论 here 阐明了这个问题。基本上,您需要为平板电脑的宽度创建单独的可绘制文件夹。前任。 drawable-sw600dp
和 drawable-sw720dp
等等
参考developer guide了解更多详情。