开发Android平板电脑应用的好方法

时间:2013-01-18 14:25:49

标签: android

我有一个项目可以实现应用的平板电脑版本。这个应用程序只有纵向模式没有横向模式支持。所以我的方法是在平板电脑上实现。

然而,你们都知道android有不同类型的设备和Android版本。如何确保我的平板电脑应用程序适用于所有平板电脑设备。还有用户界面,在平板电脑上做的最佳做法是什么?如何确保我的应用布局适合所有设备?什么样的UI框架对开发Android平板电脑有用?

非常感谢!!!我很感激分享你的经历。

问候 justicepenny

1 个答案:

答案 0 :(得分:5)

你必须使用片段。所以你的应用程序看起来像这样:

enter image description here

  • 创建一个布局,一个用于手机,另一个用于平板电脑。

<强>布局/ 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>
  • 现在在FragmentActivity中检查:

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类处理。