我是android开发领域的新手。我想限制在小屏幕设备(例如2.7英寸(240 x 320)px分辨率的屏幕)上下载应用程序。 请帮助,谢谢。
答案 0 :(得分:1)
您可以通过使用标签#include <iostream>
#include <utility>
#include <set>
int main(){
auto p=std::make_pair(2,3);
std::set<std::pair<int,int>> s{p};
auto it=s.find(p);
it->second=5; // compilation error
if(it!=s.end()) std::cout << it->second << '\n';
}
或<supports-screen>
在清单中声明要支持的屏幕尺寸来做到这一点
文档:
https://developer.android.com/guide/topics/manifest/compatible-screens-element https://developer.android.com/guide/practices/screens-distribution https://developer.android.com/guide/topics/manifest/supports-screens-element