Я пытаюсь изменить размер моего ViewPager зависит от размера экрана устройства. My ViewPager находится в центре экрана и имеет ширину 300 дБ. Я хочу, чтобы высота размера ViewPager изменялась в зависимости от размера экрана. Под моим ViewPager у него есть ImageView, этот ImageView охватывает часть моего ViewPager.Как изменить размер моего ViewPager зависит от размера экрана?
В моей activity_main.xml
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_below="@+id/img_memtext"
android:layout_centerHorizontal="true"/>
<com.viewpagerindicator.CirclePageIndicator
android:id="@+id/indicator"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_below="@+id/pager"
android:layout_centerHorizontal="true"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="50dp"
android:background="@drawable/notification_bg"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignTop="@+id/attention"
android:layout_below="@id/indicator"/>
В моей viewpager_item.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:background="#ffffffff"
android:isScrollContainer="true"
android:fillViewport="true"
android:layout_gravity="center"
>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
>
<ImageView
android:layout_width="280dp"
android:layout_height="100dp"
android:id="@+id/news_image"
android:layout_centerHorizontal="true"/>
<TextView
android:id="@+id/news_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textStyle="bold"
android:textSize="18dp"
android:layout_below="@+id/news_image"/>
<TextView
android:id="@+id/space"
android:layout_width="20dp"
android:layout_height="20dp"
android:gravity="center"
android:layout_below="@+id/news_title"
/>
<TextView
android:id="@+id/news_body"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/news_title"
android:textSize="14dp"/>
<TextView
android:id="@+id/read_more"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/news_body"
android:textColor="#ff28c0ff"
android:clickable="true"
android:textSize="14dp"/>
</RelativeLayout>
</ScrollView>
Может кто-нибудь может мне помочь, пожалуйста? Большое спасибо.
Попробуйте проверить https://stackoverflow.com/questions/21627150/android-auto-resize-view-for-small-screen – DeJaVo