具有滚动活动的Android Studio [关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了具有滚动活动的Android Studio [关闭]相关的知识,希望对你有一定的参考价值。
[抱歉,我是android studio和Stack Overflow的新手。如何创建滚动图像按钮的页面?我的项目是用Java制作的。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Visitare">
<ScrollView
android:layout_width="409dp"
android:layout_height="729dp"
tools:layout_editor_absoluteX="1dp"
tools:layout_editor_absoluteY="1dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
</ScrollView>
答案
您可以使用ScrollView
,如下所示:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="What is Lorem Ipsum?"
android:textSize="34sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Lorem Ipsum is simply dummy text of the printing and typesetting industry...like Aldus PageMaker including versions of Lorem Ipsum."
android:textSize="14sp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Why do we use it?"
android:layout_marginTop="16dp"
android:textSize="34sp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Lorem Ipsum is simply dummy text of the printing and typesetting industry...like Aldus PageMaker including versions of Lorem Ipsum."
android:textSize="14sp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Where can I get some?"
android:layout_marginTop="16dp"
android:textSize="34sp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="There are many variations of passages of Lorem Ipsum available ... or non-characteristic words etc."
android:textSize="14sp"/>
</LinearLayout>
</ScrollView>
以上是关于具有滚动活动的Android Studio [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
sql 数据库中具有多个表的活动崩溃 - Android Studio
如何在进入不同活动的情况下不删除 Android Studio 活动中的变量?