我有一个项目可以实现应用的平板电脑版本。这个应用程序只有纵向模式没有横向模式支持。所以我的方法是在平板电脑上实现。
然而,你们都知道android有不同类型的设备和Android版本。如何确保我的平板电脑应用程序适用于所有平板电脑设备。还有用户界面,在平板电脑上做的最佳做法是什么?如何确保我的应用布局适合所有设备?什么样的UI框架对开发Android平板电脑有用?
非常感谢!!!我很感激分享你的经历。
问候 justicepenny
答案 0 :(得分:5)
你必须使用片段。所以你的应用程序看起来像这样:
<强>布局/ main.xml中:强>
<LinearLayout
android:id="@+id/handset"
[...]
>
</LinearLayout>
<强>布局大/ sw400dp:强>
<LinearLayout
[...]
>
<fragment android:name="com.bla.bla.FirstFragment"
android:id="@+id/first_fragment"
[...]
/>
<fragment android:name="com.bla.bla.SecondFragment"
android:id="@+id/second_fragment"
[...]
/>
</LinearLayout>
if (findViewById(R.id.handset) != null) {
// it's a handset device and you can add a Fragment to this View
}
FirstFragment firstFragment = new FirstFragment();
getSupportFragmentManager().beginTransaction().add(R.id.handset, firstFragment).commit();
R.id.handset
返回null,则它是平板电脑,在这种情况下,静态添加的片段将由其Fragments类处理。