Размер фрагмента с прокруткой - PullRequest
0 голосов
/ 11 июня 2018

Фрагмент с прокруткой

Привет, ребята.Вот мой текущий дизайн.Линейный макет с видом прокрутки на левой стороне с кнопками продолжает расширяться в зависимости от того, сколько кнопок я нажимаю.То, что я пытаюсь сделать, это сохранить его фиксированный размер и позволить представлению прокрутки сделать это работает.Я продолжаю изменять minWidth и minHeigth и даже layout_width и layout_height в фиксированном размере, но он все еще продолжает расширяться.Любая идея, что я делаю неправильно?. Спасибо

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:minWidth="800dp"
    android:minHeight="600dp"
    android:weightSum="100">
<!--Top Title Bar-->
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="15"
        android:weightSum="100"
        android:background="@drawable/AppBarBackground">
        <TextView
            android:id="@+id/tvCompanyName"
            android:fontFamily="@string/fontFamily"
            android:text="Reports"
            android:textColor="@color/white"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="15"
            android:gravity="center|left"
            android:textSize="@dimen/textSizeSmall"
            android:textStyle="bold"
            android:paddingLeft="20dp"
            android:paddingRight="10dp" />
    </LinearLayout>
<!--Content Layout-->
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="85"
        android:weightSum="100">
    <!--Buttons Left Size-->
        <ScrollView
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="30"
            android:fillViewport="false">
            <LinearLayout
                android:orientation="vertical"
                android:layout_width="fill_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:background="@drawable/BackgroundWhite">
                <Button
                    android:id="@+id/btnXReadRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="X-Read"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
                <Button
                    android:id="@+id/btnZReadRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="Z-Read"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
                <Button
                    android:id="@+id/btnSalesRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="Sales"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
                <Button
                    android:id="@+id/btnDiscountRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="Discount"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
                <Button
                    android:id="@+id/btnItemVoidRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="Item Void"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
                <Button
                    android:id="@+id/btnTransVoidRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="Transaction Void"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
                <Button
                    android:id="@+id/btnZReadRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="Z-Read"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
                <Button
                    android:id="@+id/btnSalesRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="Sales"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
                <Button
                    android:id="@+id/btnDiscountRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="Discount"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
                <Button
                    android:id="@+id/btnItemVoidRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="Item Void"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
                <Button
                    android:id="@+id/btnTransVoidRpt"
                    android:textAllCaps="false"
                    android:fontFamily="@string/fontFamily"
                    android:layout_height="wrap_content"
                    android:layout_width="match_parent"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:background="@drawable/ButtonSelectorBorderBaseColor"
                    android:layout_marginLeft="5dp"
                    android:layout_marginRight="5dp"
                    android:textColor="@color/blue"
                    android:text="Transaction Void"
                    android:layout_marginTop="10dp"
                    android:layout_marginBottom="10dp"
                    android:layout_weight="5" />
            </LinearLayout>
        </ScrollView>
        <LinearLayout
            android:orientation="vertical"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="70"
            android:weightSum="100"
            android:background="@drawable/BackgroundWhite" />
    </LinearLayout>
</LinearLayout>

Ответы [ 2 ]

0 голосов
/ 13 июня 2018

То, что я пытаюсь сделать, это сохранить его фиксированный размер и позволить представлению прокрутки работать.

Попробуйте установить фиксированный размер ScrollView вместо использованияmatch_parent.

Например:

<ScrollView
    android:layout_width="0dp"
    android:layout_height="200dp"
    android:layout_weight="30"
    android:fillViewport="false">
...
</ScrollView>

И результат:enter image description here

0 голосов
/ 11 июня 2018

Если вы хотите, чтобы ваш макет был фиксированного размера, вам нужно установить фиксированную высоту, т.е.

android:layout_width="YOUR WIDTH"
android:layout_height="YOUR_HEIGHT"
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...