JAVA日报

2021/6/20 11:52:12

本文主要是介绍JAVA日报,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

从零开始的体温app开发(初识布局)

LinearLayout 线性布局
ScrollView 滑动布局
此两种布局比较常用
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
</LinearLayout>
<ScrollView 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"
    android:orientation="vertical"
    tools:context=".MainActivity">
</ScrollView>


这篇关于JAVA日报的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程