Android开发程序之路ScrollView & HorizontalScrollView
程序员文章站
2022-06-16 10:10:08
如何让界面滚动起来将布局方式改为ScrollView或HorizontalScrollView注意这两个的子元素只能有一个,所以往往要将多级子元素先套在一个Linear Layout里面。activity_main.xml
如何让界面滚动起来
将布局方式改为ScrollView或HorizontalScrollView
注意这两个的子元素只能有一个,所以往往要将多级子元素先套在一个Linear Layout里面。
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/btn_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView"
android:textAllCaps="false"/>
<Button
android:id="@+id/btn_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Textbutton"
android:textAllCaps="false"/>
<Button
android:id="@+id/btn_edittext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="EditText"
android:textAllCaps="false"/>
<!--textAllCaps即内容全部大写 -->
<Button
android:id="@+id/btn_radiobutton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="RadioButton"
android:textAllCaps="false"/>
<!--textAllCaps即内容全部大写 -->
<Button
android:id="@+id/btn_checkbox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="CheckBox"
android:textAllCaps="false"/>
<Button
android:id="@+id/btn_imageview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="ImageView"
android:textAllCaps="false"/>
<Button
android:id="@+id/btn_listview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="ListView"
android:textAllCaps="false"/>
<Button
android:id="@+id/btn_gridview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="GridView"
android:textAllCaps="false"/>
<HorizontalScrollView//水平滚动
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">//水平对齐
<Button
android:layout_width="200dp"
android:layout_height="300dp"
android:text="蕾姆"
android:textAllCaps="false"/>
<Button
android:layout_width="200dp"
android:layout_height="300dp"
android:text="蕾姆"
android:textAllCaps="false"/>
<Button
android:layout_width="200dp"
android:layout_height="300dp"
android:text="蕾姆"
android:textAllCaps="false"/>
</LinearLayout>
</HorizontalScrollView>
<Button
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="text"
android:layout_marginTop="300dp"
android:textAllCaps="false"/>
</LinearLayout>
</ScrollView>
效果
本文地址:https://blog.csdn.net/weixin_45941945/article/details/112908399
上一篇: UWP 设置控件样式四种方法
下一篇: Android图片转换为Base64编码
推荐阅读
-
Java程序员转Android开发必读经验一份
-
Kotlin 编程语言成为其 Android 应用程序开发人员的首选语言
-
C#开发Android百度地图手机应用程序(多地图展示)
-
基于MUI框架+HTML5PLUS 开发 iOS和Android 应用程序(APP)
-
Android开发笔记之 RecyclerView和ScrollView嵌套使用,ListView和ScrollView嵌套使用对比
-
Android开发之程序在系统中如何完成启动?
-
微信小程序开发之IOS和Android兼容的问题
-
使用Eclipse开发Android应用程序
-
搭建android开发环境之路,悲惨的源代码下载 Androidcygwingityumsdk
-
搭建android开发环境之路,悲惨的源代码下载 Androidcygwingityumsdk