簡體   English   中英

我如何在 match_parent 布局下方設置 ListView

[英]How i set ListView below match_parent Layout

布局:

列表顯示

我想將 mChartView 設置為 match_parent(適合屏幕),然后在 mChartView 下方添加 ListView 但這僅顯示 mChartView

我嘗試將固定大小設置為 mChartView 和 ListView 工作! 但我無法將 mChartView 設置為適合其他屏幕尺寸。

我的 mChartView 和 ListView 使用 ScrollView

(下面的代碼可以工作,但 mChart 不 match_parent 因為固定大小)

           <ScrollView
            android:id="@+id/scroll"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scrollbars="none"
            android:fillViewport="true">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">

                <TextView
                    android:id="@+id/tv_units"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="10dp"
                    android:layout_marginTop="30dp"
                    android:text="@string/label_data_baht"
                    android:textColor="@color/white"
                    android:textSize="16sp" />


                <LinearLayout
                    android:id="@+id/ll_chart"
                    android:layout_width="match_parent"
                    android:layout_height="400dp" // fixed size
                    android:layout_margin="10dp"
                    android:orientation="vertical">

                    <com.github.mikephil.charting.charts.BarChart
                        android:id="@+id/mBarChart"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent">

                    </com.github.mikephil.charting.charts.BarChart>

                </LinearLayout>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="right">

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:gravity="right">

                        <ImageView
                            android:layout_width="18dp"
                            android:layout_height="8dp"
                            android:layout_marginRight="5dp"
                            android:layout_marginTop="5dp"
                            android:background="@drawable/bg_ic_saving" />

                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:text="@string/tv_saving"
                            android:textColor="#ffffff"
                            android:textSize="13sp" />

                        <ImageView
                            android:layout_width="18dp"
                            android:layout_height="8dp"
                            android:layout_marginLeft="22dp"
                            android:layout_marginRight="5dp"
                            android:layout_marginTop="5dp"
                         android:background="@drawable/bg_ic_expense"/>

                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_marginRight="33dp"
                            android:text="@string/tv_expense"
                            android:textColor="#ffffff"
                            android:textSize="13sp" />

                    </LinearLayout>

                </RelativeLayout>

                <ListView
                    android:id="@+id/BillListYearly"
                    android:layout_width="match_parent"
                    android:layout_height="400dp"  // fixed size
                    android:layout_marginTop="20dp"
                    android:layout_marginLeft="3dp"
                    android:layout_marginRight="3dp"
                    android:layout_gravity="center_horizontal"
                    android:focusable="false">

                </ListView>

            </LinearLayout>

        </ScrollView>

謝謝你。

(我為英語不完美而道歉)

將屬性android:layout_weight="1"到圖表視圖的LinearLayout

也讓它match_parent用於高度屬性,

使您的ListView match_parent為 height 屬性。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM