我正在为NSArray *test = @[@"str1", @"str2", @"str3"];
NSString *cellString = [test componentsJoinedByString:@" "];
self.meaningTextView.text = [NSString stringWithFormat:@"Meaning : %@", cellString];
设备使用drawable-xhdpi
文件夹(moto g),为720*1280
设备使用drawble-xxxhdpi
(nexus 6)。
但我面临着为nexus 6设备提供支持的问题,它还从drawable-xhdpi文件夹中挑选图像并且图像正在拉伸。 任何人都可以告诉我支持这些决议的文件夹。
答案 0 :(得分:1)
Nexus 6的量化密度 560 dpi ,介于 xxhdpi 和 xxxhdpi 主密度桶之间。
对于Nexus 6,该平台将缩小 xxxhdpi 资产,但如果这些资产不可用,那么它将向上扩展 xxhdpi 资产
res/
drawable-mdpi/
ic_sunny.png
drawable-hdpi/
ic_sunny.png
drawable-xhdpi/
ic_sunny.png
drawable-xxhdpi/ # Fall back to these if xxxhdpi versions aren’t available
ic_sunny.png
drawable-xxxhdpi/ # Higher resolution assets for Nexus 6
ic_sunny.png
ic_launcher.png
mipmap-xxxhdpi/
ic_launcher.png # App icon used on Nexus 6 device launcher
答案 1 :(得分:0)
我认为你应该尝试使用html, body { margin: 0; padding: 0 }
#flag {
height : 100px;
width : 100%;
background: linear-gradient(to bottom,
red 0%, red 33.33%,
blue 0%, blue 66.66%,
orange 0%);
}
或者drawable-large-xhdpi
来使用Nexus 6.因为它的屏幕尺寸是drawable-large-xxhdpi
,它属于5.96”
类屏幕尺寸{{3 }}