在我的圖形佈局中,即使設置了滾動視圖,它也會在屏幕末尾切斷。有沒有辦法擴展圖形佈局,以便我可以看到整個滾動視圖,而不僅限於屏幕大小?如何擴展android圖形佈局屏幕大小?
XML代碼:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layoutChampions"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
檢查是否在某處添加了邊距/填充。如果你可以附加屏幕截圖,那將會很好。 – Sharj
剛剛添加的代碼 – Piofmc