3.14

所花时间(包括上课):4

打码量(行):560

博客量(篇):1

了解到知识点:学习ScrollView

<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent">

 

    <!-- LinearLayout -->

    <LinearLayout

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:orientation="vertical">

 

        <!-- TextView 1 -->

        <TextView

            android:layout_width="match_parent"

            android:layout_height="wrap_content"

            android:text="666"

            android:padding="16dp" />

 

        <!-- ImageView -->

        <ImageView

            android:layout_width="match_parent"

            android:layout_height="wrap_content"

            android:src="@drawable/sample_image"

            android:scaleType="fitXY"

            android:padding="16dp" />

 

        <!-- TextView 2 -->

        <TextView

            android:layout_width="match_parent"

            android:layout_height="wrap_content"

            android:text="666"

            android:padding="16dp" />

    </LinearLayout>

</ScrollView>

posted @ 2024-03-14 23:49  赵千万  阅读(4)  评论(0编辑  收藏  举报