美文网首页Android studio
基本布局之一线性布局

基本布局之一线性布局

作者: deanwin | 来源:发表于2020-04-06 15:05 被阅读0次

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

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

        android:orientation="vertical" 

         android:layout_width="match_parent"

         android:layout_height="match_parent">

          android:layout_width="match_parent" 

          android:layout_height="wrap_content"

          android:text="按钮"

          android:id="@+id/button_1"/>

          />

          android:layout_width="match_parent"

          android:layout_height="wrap_content"

          android:id="@+id/edit_text"

          android:hint="type sonmething here"

          />

    </LinearLayout>

    相关文章

      网友评论

        本文标题:基本布局之一线性布局

        本文链接:https://www.haomeiwen.com/subject/ankbphtx.html