当前位置:   article > 正文

android studio布局_android studio框架布局

android studio框架布局

android studio 布局最多的是linearlayout.这种布局,可以设置水平,或者垂直。

相对于控件,布局是最外一层。

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"

    android:padding="40dp"
    android:weightSum="1">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        />

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:inputType="textPersonName"
        android:text="src"
        android:ems="10"
        android:layout_alignParentStart="true"

        android:id="@+id/editText"
        android:layout_weight="0.03" />

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:inputType="textPersonName"
        android:text="minus"
        android:ems="10"
        android:id="@+id/editText2"
        android:layout_weight="0.03" />

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:inputType="textPersonName"
        android:text="dst"
        android:ems="10"
        android:id="@+id/editText3"
        android:layout_centerHorizontal="true" />
    <Button
        android:text="Button"
        android:layout_width="60dp"
        android:layout_height="wrap_content"
        android:id="@+id/button"
        android:layout_weight="0.03" />
</LinearLayout>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/582977
推荐阅读
相关标签
  

闽ICP备14008679号