欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 文旅 > 文化 > 滚动视图ScrollView

滚动视图ScrollView

2024/11/30 10:32:35 来源:https://blog.csdn.net/2302_79756970/article/details/141783916  浏览:    关键词:滚动视图ScrollView

 activity_scroll_view.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"><HorizontalScrollViewandroid:layout_width="wrap_content"android:layout_height="200dp"><!-- 水平方向的线性布局,两个子视图的颜色分别为青色和黄色 --><LinearLayoutandroid:layout_width="wrap_content"android:layout_height="match_parent"android:orientation="horizontal"><Viewandroid:layout_width="300dp"android:layout_height="match_parent"android:background="#aaffff"android:contentDescription="青色视图" /><Viewandroid:layout_width="300dp"android:layout_height="match_parent"android:background="#ffff00"android:contentDescription="黄色视图" /></LinearLayout></HorizontalScrollView><ScrollViewandroid:layout_width="match_parent"android:layout_height="wrap_content"><!-- 垂直方向的线性布局,两个子视图的颜色分别为绿色和橙色 --><LinearLayoutandroid:layout_width="wrap_content"android:layout_height="match_parent"android:orientation="vertical"><Viewandroid:layout_width="match_parent"android:layout_height="400dp"android:background="#00ff00"android:contentDescription="青色视图" /><Viewandroid:layout_width="match_parent"android:layout_height="400dp"android:background="#ffffaa"android:contentDescription="黄色视图" /></LinearLayout></ScrollView></LinearLayout>

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"><applicationandroid:allowBackup="true"android:icon="@mipmap/ic_launcher"android:label="@string/app_name"android:roundIcon="@mipmap/ic_launcher_round"android:supportsRtl="true"android:theme="@style/Theme.MyApplication"><activityandroid:name=".ScrollViewActivity"android:exported="true" /><intent-filter><action android:name="android/intent.action.MAIN" /><category android:name="android.intent.category.LAUNCHER" /></intent-filter></application></manifest>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com