android 如何为我的下面的代码提供滚动视图

发布于 2024-11-30 04:08:53 字数 8266 浏览 0 评论 0原文

自定义对话框

只需查看附加的快照,我希望中间部分应该滚动(除了欢迎和下面的“关闭让我进入”按钮) 我为中间部分提供了 srollview 但它不起作用。 下面是我的 xml 代码。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <RelativeLayout android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <LinearLayout android:id="@+id/layout"
            android:orientation="vertical" android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
    <TextView android:text="Welcome" android:id="@+id/txtNew"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:textSize="20px" android:textStyle="bold" android:typeface="serif"
        android:gravity="center"
        android:paddingBottom="10dp"
        android:paddingTop="10dp" />
    <ImageView android:src="@drawable/devider"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:layout_gravity="center" android:paddingBottom="10dp"
        />
        </LinearLayout>
    </RelativeLayout>

    <RelativeLayout android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <ScrollView android:id="@+id/ScrollView01"
        android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingTop="50dp">
        <LinearLayout android:id="@+id/ayout"
            android:orientation="vertical" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:paddingTop="5dp">
            <TableLayout android:id="@+id/TableLayout01"
                android:layout_width="wrap_content" android:layout_height="wrap_content"
                android:paddingLeft="10dp">
                <TextView android:text="What's new?" android:id="@+id/txtNew"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textSize="20px" android:textStyle="bold"
                    android:layout_gravity="center" android:paddingBottom="10dp"
                    android:paddingTop="10dp" />
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Cool and fun way of doodling with near and dear ones"
                        android:id="@+id/txt" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Using bluetooth for realtime transmission"
                        android:id="@+id/txt1" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="U can share it with ur friends"
                        android:id="@+id/txt2" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>

                <TextView android:text="Comming Soon" android:id="@+id/txtSoon"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textSize="20px" android:textStyle="bold"
                    android:layout_gravity="center" android:paddingBottom="10dp"
                    android:paddingTop="10dp" />

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Save your Doodles" android:id="@+id/save"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Choosing Colors" android:id="@+id/colors"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="sans" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Eraser" android:id="@+id/eraser"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="normal" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Shapes" android:id="@+id/shapes"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="monospace" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Brush Size" android:id="@+id/brush"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Brush Size" android:id="@+id/brush1"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>

            </TableLayout>
        </LinearLayout>
    </ScrollView>
    </RelativeLayout>

    <RelativeLayout android:id="@+id/parent"
        android:layout_width="fill_parent" android:layout_height="wrap_content">
        <LinearLayout android:id="@+id/myLayout"
            android:orientation="vertical" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:paddingTop="5dp"
            android:layout_alignParentBottom="true" android:background="#FF999999">
            <Button android:id="@+id/alignButtom" android:layout_width="wrap_content"
                android:paddingTop="10dp" android:layout_height="wrap_content"
                android:text="Dismiss let me in" android:layout_gravity="center" />
        </LinearLayout>
    </RelativeLayout>

</RelativeLayout>

我不知道为什么滚动视图不起作用,请有人解决它。 谢谢

Custom Dialog

Just see attched snap shot, I want middle part should scrolled(except Welcome and that below "Dismiss let me in" button)
I gave srollview for middle portion but its not working.
Below is my code in xml,.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <RelativeLayout android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <LinearLayout android:id="@+id/layout"
            android:orientation="vertical" android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
    <TextView android:text="Welcome" android:id="@+id/txtNew"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:textSize="20px" android:textStyle="bold" android:typeface="serif"
        android:gravity="center"
        android:paddingBottom="10dp"
        android:paddingTop="10dp" />
    <ImageView android:src="@drawable/devider"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:layout_gravity="center" android:paddingBottom="10dp"
        />
        </LinearLayout>
    </RelativeLayout>

    <RelativeLayout android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <ScrollView android:id="@+id/ScrollView01"
        android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingTop="50dp">
        <LinearLayout android:id="@+id/ayout"
            android:orientation="vertical" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:paddingTop="5dp">
            <TableLayout android:id="@+id/TableLayout01"
                android:layout_width="wrap_content" android:layout_height="wrap_content"
                android:paddingLeft="10dp">
                <TextView android:text="What's new?" android:id="@+id/txtNew"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textSize="20px" android:textStyle="bold"
                    android:layout_gravity="center" android:paddingBottom="10dp"
                    android:paddingTop="10dp" />
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Cool and fun way of doodling with near and dear ones"
                        android:id="@+id/txt" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Using bluetooth for realtime transmission"
                        android:id="@+id/txt1" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="U can share it with ur friends"
                        android:id="@+id/txt2" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>

                <TextView android:text="Comming Soon" android:id="@+id/txtSoon"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textSize="20px" android:textStyle="bold"
                    android:layout_gravity="center" android:paddingBottom="10dp"
                    android:paddingTop="10dp" />

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Save your Doodles" android:id="@+id/save"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Choosing Colors" android:id="@+id/colors"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="sans" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Eraser" android:id="@+id/eraser"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="normal" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Shapes" android:id="@+id/shapes"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="monospace" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Brush Size" android:id="@+id/brush"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Brush Size" android:id="@+id/brush1"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>

            </TableLayout>
        </LinearLayout>
    </ScrollView>
    </RelativeLayout>

    <RelativeLayout android:id="@+id/parent"
        android:layout_width="fill_parent" android:layout_height="wrap_content">
        <LinearLayout android:id="@+id/myLayout"
            android:orientation="vertical" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:paddingTop="5dp"
            android:layout_alignParentBottom="true" android:background="#FF999999">
            <Button android:id="@+id/alignButtom" android:layout_width="wrap_content"
                android:paddingTop="10dp" android:layout_height="wrap_content"
                android:text="Dismiss let me in" android:layout_gravity="center" />
        </LinearLayout>
    </RelativeLayout>

</RelativeLayout>

Why scrollview is not working i dont know, plz anybody solve it.
Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

樱娆 2024-12-07 04:08:53
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

     <LinearLayout android:id="@+id/layout"
            android:orientation="vertical" 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
        <TextView android:text="Welcome" android:id="@+id/txtNew"
            android:layout_width="fill_parent" android:layout_height="wrap_content"
            android:textSize="20px" android:textStyle="bold" android:typeface="serif"
            android:gravity="center"
            android:paddingBottom="10dp"
            android:paddingTop="10dp" />
        <ImageView android:src="@drawable/devider"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:layout_gravity="center" android:paddingBottom="10dp"/>
        </LinearLayout>
    <ScrollView 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent"
      android:scrollbarFadeDuration="2000"
      android:fadeScrollbars="true"
      android:orientation="vertical"
      android:layout_marginBottom="50dip">
     <LinearLayout android:id="@+id/ayout"
            android:orientation="vertical" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:paddingTop="5dp">
            <TableLayout android:id="@+id/TableLayout01"
                android:layout_width="wrap_content" android:layout_height="wrap_content"
                android:paddingLeft="10dp">
                <TextView android:text="What's new?" android:id="@+id/txtNew"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textSize="20px" android:textStyle="bold"
                    android:layout_gravity="center" android:paddingBottom="10dp"
                    android:paddingTop="10dp" />
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Cool and fun way of doodling with near and dear ones"
                        android:id="@+id/txt" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Using bluetooth for realtime transmission"
                        android:id="@+id/txt1" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="U can share it with ur friends"
                        android:id="@+id/txt2" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>

                <TextView android:text="Comming Soon" android:id="@+id/txtSoon"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textSize="20px" android:textStyle="bold"
                    android:layout_gravity="center" android:paddingBottom="10dp"
                    android:paddingTop="10dp" />

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Save your Doodles" android:id="@+id/save"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Choosing Colors" android:id="@+id/colors"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="sans" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Eraser" android:id="@+id/eraser"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="normal" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Shapes" android:id="@+id/shapes"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="monospace" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Brush Size" android:id="@+id/brush"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Brush Size" android:id="@+id/brush1"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>

            </TableLayout>
        </LinearLayout>
    </ScrollView>
    <LinearLayout android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:layout_marginTop="-50dip">
     <Button android:id="@+id/alignButtom" android:layout_width="wrap_content"
        android:paddingTop="10dp" android:layout_height="wrap_content"
        android:text="Dismiss let me in" android:layout_gravity="center" />
    </LinearLayout>
</LinearLayout> 
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

     <LinearLayout android:id="@+id/layout"
            android:orientation="vertical" 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
        <TextView android:text="Welcome" android:id="@+id/txtNew"
            android:layout_width="fill_parent" android:layout_height="wrap_content"
            android:textSize="20px" android:textStyle="bold" android:typeface="serif"
            android:gravity="center"
            android:paddingBottom="10dp"
            android:paddingTop="10dp" />
        <ImageView android:src="@drawable/devider"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:layout_gravity="center" android:paddingBottom="10dp"/>
        </LinearLayout>
    <ScrollView 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent"
      android:scrollbarFadeDuration="2000"
      android:fadeScrollbars="true"
      android:orientation="vertical"
      android:layout_marginBottom="50dip">
     <LinearLayout android:id="@+id/ayout"
            android:orientation="vertical" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:paddingTop="5dp">
            <TableLayout android:id="@+id/TableLayout01"
                android:layout_width="wrap_content" android:layout_height="wrap_content"
                android:paddingLeft="10dp">
                <TextView android:text="What's new?" android:id="@+id/txtNew"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textSize="20px" android:textStyle="bold"
                    android:layout_gravity="center" android:paddingBottom="10dp"
                    android:paddingTop="10dp" />
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Cool and fun way of doodling with near and dear ones"
                        android:id="@+id/txt" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Using bluetooth for realtime transmission"
                        android:id="@+id/txt1" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="U can share it with ur friends"
                        android:id="@+id/txt2" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:textSize="18px"
                        android:typeface="serif" />
                </TableRow>

                <TextView android:text="Comming Soon" android:id="@+id/txtSoon"
                    android:layout_width="wrap_content" android:layout_height="wrap_content"
                    android:textSize="20px" android:textStyle="bold"
                    android:layout_gravity="center" android:paddingBottom="10dp"
                    android:paddingTop="10dp" />

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Save your Doodles" android:id="@+id/save"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>
                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Choosing Colors" android:id="@+id/colors"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="sans" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Eraser" android:id="@+id/eraser"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="normal" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Shapes" android:id="@+id/shapes"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="monospace" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Brush Size" android:id="@+id/brush"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>

                <TableRow>
                    <ImageView android:src="@drawable/star"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
                    <TextView android:text="Brush Size" android:id="@+id/brush1"
                        android:layout_width="wrap_content" android:layout_height="wrap_content"
                        android:textSize="18px" android:typeface="serif" />
                </TableRow>

            </TableLayout>
        </LinearLayout>
    </ScrollView>
    <LinearLayout android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:layout_marginTop="-50dip">
     <Button android:id="@+id/alignButtom" android:layout_width="wrap_content"
        android:paddingTop="10dp" android:layout_height="wrap_content"
        android:text="Dismiss let me in" android:layout_gravity="center" />
    </LinearLayout>
</LinearLayout> 
南冥有猫 2024-12-07 04:08:53

添加 :

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent" android:layout_height="fill_parent">
            <RelativeLayout android:orientation="vertical"
                android:layout_width="fill_parent" android:layout_height="wrap_content">
                ....
             </RelativeLayout>
        </ScrollView>

Add :

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent" android:layout_height="fill_parent">
            <RelativeLayout android:orientation="vertical"
                android:layout_width="fill_parent" android:layout_height="wrap_content">
                ....
             </RelativeLayout>
        </ScrollView>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文