我真的不明白如何处理不同的手机/平板电脑屏幕。我参考检索google nexus的屏幕看起来很完美(800x480)但特别是平板电脑看起来很糟糕。在左角1/4大小。屏幕的剩余部分只是垃圾。
我在xml上做的是这样的;
<LinearLayout>
<RelativeLayout fill_parent>
<LinearLayout height="fill_parent" width="387dp">
RIGHT SCREEN
</LinearLayout>
<LinearLayout height="fill_parent" marginLeft="387dp" width="147dp">
LEFT SCREEN
</LinearLayout>
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:1)
您应该在清单文件中包含对xlarge屏幕的支持。您还可以为xlarge屏幕设计单独的布局。请检查此article
答案 1 :(得分:1)
你可以:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/left"
android:layout_weight="1"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
</LinearLayout>
<LinearLayout
android:id="@+id/right"
android:layout_weight="2"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</LinearLayout>
</LinearLayout>
您也可以使用RelativeLayout。