我有一个Android应用程序,其中包含一个包含滚动视图的xml文件,我在此布局中添加了一些按钮,我想添加更多按钮(当我添加图形布局内容时会被污损)但我无法添加更多这里也是我的xml文件
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".DualarMainActivity" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/dualarbackround"
android:orientation="vertical" >
<Button
android:id="@+id/button6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button5"
android:layout_alignRight="@+id/button2"
android:layout_below="@+id/button5"
android:layout_marginTop="20dp"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="248dp"
android:layout_height="wrap_content"
android:layout_below="@+id/button2"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button3"
android:layout_below="@+id/button1"
android:layout_marginTop="20dp"
android:text="Button" />
<Button
android:id="@+id/button1"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignRight="@+id/button3"
android:layout_marginTop="240dp"
android:text="Button" />
<Button
android:id="@+id/button4"
android:layout_width="256dp"
android:layout_height="wrap_content"
android:layout_below="@+id/button3"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:text="Button" />
<Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button3"
android:layout_alignRight="@+id/button4"
android:layout_below="@+id/button4"
android:layout_marginTop="20dp"
android:text="Button" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/bismillah" android:contentDescription="TODO"/>
<Button
android:id="@+id/button7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button1"
android:layout_alignRight="@+id/button1"
android:layout_below="@+id/imageView1"
android:layout_marginTop="50dp"
android:text="Button" />
<Button
android:id="@+id/button8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/button7"
android:layout_alignLeft="@+id/button4"
android:layout_alignRight="@+id/button7"
android:layout_marginBottom="65dp"
android:text="Button" />
</RelativeLayout>
</ScrollView>
答案 0 :(得分:1)
okeyı在改变时解决了问题
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/dualarbackround"
android:orientation="vertical" >
<强> TO 强>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="1500dp"
android:background="@drawable/dualarbackround"
android:orientation="vertical" >
(我已经改变了相对于另一个数据单位(密度像素)的相关布局内容的高度包装内容)