我有一个带有ViewPager和另一个LinearLayout的RelativeLayout。我已将ViewPager的布局宽度设置为match_parent
,并将布局高度设置为250dp的固定值。
但是,当更改屏幕尺寸越来越大时,ViewPager的高度会变小。
如何根据屏幕尺寸改变高度?
如果我将高度设置为wrap_content
,它几乎会占用整个屏幕,除了为其他布局保留的较小位。
代码发布在下面。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.sloid.destinations.navigationdrawerfragments.aboutSLFragment">
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_marginBottom="8dp"/>
<LinearLayout
android:id="@+id/SliderDots"
android:layout_below="@+id/viewPager"
android:orientation="horizontal"
android:gravity="center_vertical|center_horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>
答案 0 :(得分:1)
尝试使用此
如果您想为多个设备制作屏幕设计,
您可以将 WeightSum 与 LinearLayout 一起用作容器,以避免如下所示: -
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="10"
tools:context="com.example.sloid.destinations.navigationdrawerfragments.aboutSLFragment">
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="3.5"
android:layout_marginBottom="8dp"/>
<LinearLayout
android:id="@+id/SliderDots"
android:layout_below="@+id/viewPager"
android:orientation="horizontal"
android:gravity="center_vertical|center_horizontal"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="6.5"
/>
</LinearLayout>
供参考: - https://developer.android.com/reference/android/widget/LinearLayout.html
答案 1 :(得分:0)
你也可以使用现代的新ConstraintLayout https://developer.android.com/training/constraint-layout/index.html 设置viewpager视图相对于屏幕高度的百分比(下例中为33%)
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toTopOf="@+id/SliderDots"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_weight="1" />
<LinearLayout
android:id="@+id/SliderDots"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_below="@+id/viewPager"
android:gravity="center_vertical|center_horizontal"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/viewPager"
app:layout_constraintVertical_weight="2" />
</android.support.constraint.ConstraintLayout>
答案 2 :(得分:0)
严格回答你的问题:
如何根据屏幕尺寸改变高度?
您可以将高度值外部化到默认值文件夹中的dimens.xml,例如
<dimen name="view_pager_height">250dp</dimen>
并在values-sw720dp文件夹中输入
<dimen name="view_pager_height">300dp</dimen>
然后在布局中使用它:
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="@dimen/view_pager_height"
android:layout_marginBottom="8dp"/>
在此处详细了解:Using new size qualifiers。
除此之外,您可以使用LinearLayout作为父级,并为每个孩子设置权重。 (作为父母的RelativeLayouts非常昂贵,因为他们会对孩子进行双重衡量)
答案 3 :(得分:0)
将 viewpager 设置为 sliderdots 。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.sloid.destinations.navigationdrawerfragments.aboutSLFragment">
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/SliderDots"/>
<LinearLayout android:id="@+id/SliderDots"
android:orientation="horizontal"
android:gravity="center_vertical|center_horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>