如何滚动屏幕(如何移动屏幕)

发布于 2024-11-05 08:11:50 字数 1221 浏览 0 评论 0原文

我想滚动 main.xml 屏幕。据我所知,ScrollView 适合于此,但我使用了 AbsoluteLayout。所以它不起作用。

有什么办法可以做到这一点吗?这是xml代码:

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


    <TextView
    android:id="@+id/txtad"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Ad"
    android:layout_x="0dip"
    android:layout_y="20dip"
    android:textSize="20sp"
    android:textStyle="bold"
    android:textColor="#ffffff"
    >
    </TextView>
    <EditText
    android:id="@+id/editad"
    android:layout_width="200px"
    android:layout_height="45px"
    android:textSize="12sp"
    android:layout_x="80dip"
    android:layout_y="5dip"
    >
    </EditText>

    <TextView
    android:id="@+id/txtsoyad"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Soyad"
    android:layout_x="0dip"
    android:layout_y="75dip"
    android:textSize="20sp"
    android:textStyle="bold"
    android:textColor="#ffffff"
    >
    </TextView>
    </AbsoluteLayout>

I want to scroll main.xml screen. As I know, ScrollView is suitable for this but I used AbsoluteLayout. so it didn't work.

is there any way to do this. here is the xml codes:

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


    <TextView
    android:id="@+id/txtad"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Ad"
    android:layout_x="0dip"
    android:layout_y="20dip"
    android:textSize="20sp"
    android:textStyle="bold"
    android:textColor="#ffffff"
    >
    </TextView>
    <EditText
    android:id="@+id/editad"
    android:layout_width="200px"
    android:layout_height="45px"
    android:textSize="12sp"
    android:layout_x="80dip"
    android:layout_y="5dip"
    >
    </EditText>

    <TextView
    android:id="@+id/txtsoyad"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Soyad"
    android:layout_x="0dip"
    android:layout_y="75dip"
    android:textSize="20sp"
    android:textStyle="bold"
    android:textColor="#ffffff"
    >
    </TextView>
    </AbsoluteLayout>

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

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

发布评论

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

评论(1

百思不得你姐 2024-11-12 08:11:50

将 ScrollView 放置在布局之外,如下所示:

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

    <!-- Your AbsoluteLayout goes here -->

</ScrollView>

请注意,AbsoluteLayout 类已弃用。您可能应该使用例如 FrameLayout 来代替。

BR,
克里斯托弗

Put a ScrollView outside of your layout like this:

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

    <!-- Your AbsoluteLayout goes here -->

</ScrollView>

Please note that the AbsoluteLayout class is deprecated. You should probably use e.g. a FrameLayout instead.

BR,
Christoffer

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文