有没有办法启用仅限平板电脑设备的拆分屏幕,而不是Android中的移动设备。
答案 0 :(得分:0)
因为你想根据屏幕尺寸将android:resizeableActivity
设置为不同的值。您应该为2种屏幕类型创建2个资源,如下所示:
在bools.xml
中创建res/values
并添加:
<bool name="split_screen_enable">true</bool>
在bools.xml
中创建res/values-sw600dp
并添加(对于平板电脑&gt; 7&#34;):
<bool name="split_screen_enable">false</bool>
在AndroidManifest
android:resizeableActivity="@bool/split_screen_enable"
有关屏幕尺寸特定配置here
的详细信息