Android Layout

Category: /knowledge /android
Tags: android

Layout

  • RelativeLayout
  • LinearLayout

Notes:

  1. If there is no following line, the message and buttons will overlap with the application title.

    app:layout_behavior=”@string/appbar_scrolling_view_behavior”

  2. The default weight for all views is 0, so if you specify any weight value greater than 0 to only one view, then that view fills whatever space remains after all views are given the space they require.

    <EditText
        android:id="@+id/edit_message"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:hint="@string/edit_message"
    />
    

讨论

提示

  • 如果看不到讨论部分, 请暂时关掉adblock in Firefox/Chrome
  • 本网站使用Javascript实现评论功能, 此处外链对提高您的网站PR没有帮助. (潜台词: 请不要灌水, 谢谢)