ViewPager
の1つでスクロール可能なビューを作成しようとしましたが、これは画面の90%を占め、ViewPager
内の画像に関する有用な情報です。Scrollviewにはビューページャーと1つの線形描画が含まれています
ただし、ScrollView
ウィジェットを追加すると、android:fillViewport="true"
を設定してもすべてのサイズと重量が機能しません。ここに私のレイアウトです。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
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="wrap_content"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:weightSum="100"
android:scrollbars="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/background_light"
android:elevation="0dp"
android:minHeight="?attr/actionBarSize"
android:theme="?attr/actionBarTheme"
app:popupTheme="?android:attr/homeAsUpIndicator" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="90"
android:orientation="vertical"
android:padding="50dip">
<android.support.v4.view.ViewPager
android:id="@+id/product_sheet_viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
<TextView
android:id="@+id/product_sheet_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="bbb"/>
<TextView
android:id="@+id/product_sheet_color"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Color: Yellow" />
<TextView
android:id="@+id/product_sheet_reference"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Ref: 2049/889/300" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
私の答えをチェックし、それが動作するかどうか私に教えてください。ありがとう! –
NestedScrollViewをmatch_parentにして、プロパティをfitSystemWindows = trueをNestedScrollViewに追加します。 –
@MuhibPiraniエラーをスローします。(2)com.androidをコンパイルしても、パッケージ 'android'の属性 'fitSystemWindows'のリソース識別子が見つかりません。サポート:デザイン:25.3.1 ''のグラデーションスクリプト内 –