我目前正在使用我的应用程序,由片段组成,只是在手机上。我正计划添加相同的平板电脑版本,但似乎有些片段在平板电脑上的工作方式与预期的不完全一样,而且经常在景观上搞砸了。所以我只需要一些指针如何去做?这是我在 xml 中的片段布局之一的代码:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/altercolor2" >
<HorizontalPageView
android:id="@+id/headline_gallery"
android:layout_width="match_parent"
android:layout_height="140dp" />
<include layout="@layout/loading_no_results" />
</FrameLayout>
如何更改它以使高度甚至可以在平板电脑上按预期工作而不会切断某些数据?另外,我应该为此在某处添加另一个重复的布局还是有解决方法?任何帮助表示赞赏,谢谢!