如何滚动屏幕(如何移动屏幕)
我想滚动 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 ScrollView 放置在布局之外,如下所示:
请注意,AbsoluteLayout 类已弃用。您可能应该使用例如 FrameLayout 来代替。
BR,
克里斯托弗
Put a ScrollView outside of your layout like this:
Please note that the AbsoluteLayout class is deprecated. You should probably use e.g. a FrameLayout instead.
BR,
Christoffer