android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
2、wrap:按正常方向换行
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
app:flexWrap=“wrap”>
<TextView
android:layout_width=“80dp”
android:layout_height=“80dp”
android:gravity=“center”
android:padding=“5dp”
android:text=“wrap:按正常方向换行” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
3、wrap-reverse:按反方向换行
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
app:flexWrap=“wrap_reverse”>
<TextView
android:layout_width=“80dp”
android:layout_height=“80dp”
android:gravity=“center”
android:padding=“5dp”
android:text=“wrap-reverse:按反方向换行” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
- Flexboxlayout 5大布局属性之-justifyContent
1、flex_start(默认值):左对齐
2、flex-end:右对齐
3、center: 居中
4、space-between:两端对齐,控件之间的间隔相等
5、space-around:每个控件距离两侧的间隔相等(项目之间的间隔比项目与边框的间隔大一倍)
详细对应的属性如下:
1、flex_start(默认值):左对齐
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
app:justifyContent=“flex_start”>
<TextView
android:layout_width=“80dp”
android:layout_height=“80dp”
android:gravity=“center”
android:padding=“5dp”
android:text=“flex_start(默认值):左对齐” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
</com.google.android.flexbox.FlexboxLayout>
2、flex-end:右对齐
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
app:justifyContent=“flex_end”>
<TextView
android:layout_width=“80dp”
android:layout_height=“80dp”
android:gravity=“center”
android:padding=“5dp”
android:text=“flex-end:右对齐” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
</com.google.android.flexbox.FlexboxLayout>
3、center: 居中
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
app:justifyContent=“center”>
<TextView
android:layout_width=“80dp”
android:layout_height=“80dp”
android:gravity=“center”
android:padding=“5dp”
android:text=“center: 居中” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
</com.google.android.flexbox.FlexboxLayout>
4、space-between:两端对齐,控件之间的间隔相等
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
app:justifyContent=“space_between”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“space-between:两端对齐,控件之间的间隔相等” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
</com.google.android.flexbox.FlexboxLayout>
5、space-around:每个控件距离两侧的间隔相等(项目之间的间隔比项目与边框的间隔大一倍)
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
app:justifyContent=“space_around”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“space-around:每个控件距离两侧的间隔相等(项目之间的间隔比项目与边框的间隔大一倍)” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
</com.google.android.flexbox.FlexboxLayout>
- Flexboxlayout 5大布局属性之-alignItems
1、stretch(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。
2、flex-start:左上方开始,并与左上方对齐
3、flex-end:左下方开始,并与左下方对齐
4、center:左控件的中间开始,并与中心线水平对齐
5、baseline: 控件中的文字向上对齐
详细对应的属性如下:
1、stretch(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignItems=“stretch”>
<TextView
android:layout_width=“80dp”
android:layout_height=“80dp”
android:gravity=“center”
android:padding=“5dp”
android:text=“stretch(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
</com.google.android.flexbox.FlexboxLayout>
2、flex-start:左上方开始,并与左上方对齐
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignItems=“flex_start”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“flex-start:左上方开始,并与左上方对齐” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
3、flex-end:左下方开始,并与左下方对齐
效果图中:应为flex-end(在这里就不换图了,明白就好)
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignItems=“flex_end”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“flex-end:左下方开始,并与左下方对齐” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
4、center:左控件的中间开始,并与中心线水平对齐
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignItems=“center”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“center:左控件的中间开始,并与中心线水平对齐” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
5、baseline: 控件中的文字向上对齐
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignItems=“baseline”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:background=“@color/colorAccent”
android:gravity=“center”
android:padding=“5dp”
android:text=“baseline: 控件中的文字向上对齐” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:padding=“5dp”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
- Flexboxlayout 5大布局属性之-alignContent
1、stretch(默认值):占满整个父控件。
2、flex-start:与左上角对齐。
3、flex-end:与左下角对齐。
4、center:居中对齐。
5、space_between:两端对齐。
6、space_around:控件两侧的间隔都相等(所以控件到控件距离是边上的2倍)
详细对应的属性如下:
1、stretch(默认值):占满整个父控件。
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignContent=“stretch”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“stretch(默认值):占满整个父控件。” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:padding=“5dp”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
2、flex-start:与左上角对齐。
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignContent=“flex_start”
app:flexWrap=“wrap”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“flex-start:与左上角对齐。” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“100dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:padding=“5dp”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“60dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“90dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“100dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
3、flex-end:与左下角对齐。
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignContent=“flex_end”
app:flexWrap=“wrap”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“flex-end:与左下角对齐。” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“100dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:padding=“5dp”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“60dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“90dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“100dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
4、center:居中对齐。
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignContent=“center”
app:flexWrap=“wrap”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“center:居中对齐。” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“100dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:padding=“5dp”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“60dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“90dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“100dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
5、space_between:两端对齐。
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignContent=“space_between”
app:flexWrap=“wrap”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“space_between:两端对齐。” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“100dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:padding=“5dp”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“60dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“90dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“100dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
6、space_around:控件两侧的间隔都相等(所以控件到控件距离是边上的2倍)
<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<com.google.android.flexbox.FlexboxLayout
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
app:alignContent=“space_around”
app:flexWrap=“wrap”>
<TextView
android:layout_width=“80dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“space_around:控件两侧的间隔都相等(所以控件到控件距离是边上的2倍)” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“100dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:padding=“5dp”
android:text=“textview1” />
<TextView
android:id=“@+id/textview2”
android:layout_width=“60dp”
android:layout_height=“80dp”
android:background=“#ffc402”
android:gravity=“center”
android:text=“textview2” />
<TextView
android:id=“@+id/textview3”
android:layout_width=“80dp”
android:layout_height=“80dp”
android:background=“#06ff02”
android:gravity=“center”
android:text=“textview3” />
<TextView
android:id=“@+id/textview4”
android:layout_width=“90dp”
android:layout_height=“80dp”
android:background=“#02c8ff”
android:gravity=“center”
android:text=“textview4” />
<TextView
android:id=“@+id/textview5”
android:layout_width=“100dp”
android:layout_height=“80dp”
android:background=“#022cff”
android:gravity=“center”
android:text=“textview5” />
</com.google.android.flexbox.FlexboxLayout>
- 元素的权重
<com.google.android.flexbox.FlexboxLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:id=“@+id/flexbox_layout”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”>
<TextView
android:layout_width=“0dp”
android:layout_height=“wrap_content”
android:gravity=“center”
android:padding=“5dp”
android:text=“layout_flexGrow(表示元素的权重属性)”
app:layout_flexGrow=“2” />
<TextView
android:id=“@+id/textview1”
android:layout_width=“0dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:padding=“5dp”
android:text=“textview1”
app:layout_flexGrow=“1” />
</com.google.android.flexbox.FlexboxLayout>
- 空间不足时子控件的缩放比例
<com.google.android.flexbox.FlexboxLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:id=“@+id/flexbox_layout”
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数Android工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点,真正体系化!
由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新
如果你觉得这些内容对你有帮助,可以添加V获取:vip204888 (备注Android)
分享读者
作者2013年java转到Android开发,在小厂待过,也去过华为,OPPO等大厂待过,18年四月份进了阿里一直到现在。
被人面试过,也面试过很多人。深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,不成体系的学习效果低效漫长,而且极易碰到天花板技术停滞不前!
我们整理了一份阿里P7级别的Android架构师全套学习资料,特别适合有3-5年以上经验的小伙伴深入学习提升。
主要包括腾讯,以及字节跳动,阿里,华为,小米,等一线互联网公司主流架构技术。
如果你觉得自己学习效率低,缺乏正确的指导,可以一起学习交流!
我们致力打造一个平等,高质量的Android交流圈子,不一定能短期就让每个人的技术突飞猛进,但从长远来说,眼光,格局,长远发展的方向才是最重要的。
35岁中年危机大多是因为被短期的利益牵着走,过早压榨掉了价值,如果能一开始就树立一个正确的长远的职业规划。35岁后的你只会比周围的人更值钱。
一个人可以走的很快,但一群人才能走的更远。如果你从事以下工作或对以下感兴趣,欢迎戳这里加入程序员的圈子,让我们一起学习成长!
AI人工智能、Android移动开发、AIGC大模型、C C#、Go语言、Java、Linux运维、云计算、MySQL、PMP、网络安全、Python爬虫、UE5、UI设计、Unity3D、Web前端开发、产品经理、车载开发、大数据、鸿蒙、计算机网络、嵌入式物联网、软件测试、数据结构与算法、音视频开发、Flutter、IOS开发、PHP开发、.NET、安卓逆向、云计算
w
android:id=“@+id/textview1”
android:layout_width=“0dp”
android:layout_height=“80dp”
android:background=“#ff0202”
android:gravity=“center”
android:padding=“5dp”
android:text=“textview1”
app:layout_flexGrow=“1” />
</com.google.android.flexbox.FlexboxLayout>
- 空间不足时子控件的缩放比例
<com.google.android.flexbox.FlexboxLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:id=“@+id/flexbox_layout”
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数Android工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
[外链图片转存中…(img-8fonuiGK-1712161169430)]
[外链图片转存中…(img-7yq29r3Q-1712161169431)]
[外链图片转存中…(img-xXfEzfMI-1712161169431)]
[外链图片转存中…(img-ZdLMcXMB-1712161169432)]
[外链图片转存中…(img-aVp2zef8-1712161169432)]
[外链图片转存中…(img-rlpclykQ-1712161169432)]
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点,真正体系化!
由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新
如果你觉得这些内容对你有帮助,可以添加V获取:vip204888 (备注Android)
[外链图片转存中…(img-tYvDD92V-1712161169432)]
分享读者
作者2013年java转到Android开发,在小厂待过,也去过华为,OPPO等大厂待过,18年四月份进了阿里一直到现在。
被人面试过,也面试过很多人。深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,不成体系的学习效果低效漫长,而且极易碰到天花板技术停滞不前!
我们整理了一份阿里P7级别的Android架构师全套学习资料,特别适合有3-5年以上经验的小伙伴深入学习提升。
主要包括腾讯,以及字节跳动,阿里,华为,小米,等一线互联网公司主流架构技术。
[外链图片转存中…(img-ym0LQal4-1712161169433)]
如果你觉得自己学习效率低,缺乏正确的指导,可以一起学习交流!
我们致力打造一个平等,高质量的Android交流圈子,不一定能短期就让每个人的技术突飞猛进,但从长远来说,眼光,格局,长远发展的方向才是最重要的。
35岁中年危机大多是因为被短期的利益牵着走,过早压榨掉了价值,如果能一开始就树立一个正确的长远的职业规划。35岁后的你只会比周围的人更值钱。
一个人可以走的很快,但一群人才能走的更远。如果你从事以下工作或对以下感兴趣,欢迎戳这里加入程序员的圈子,让我们一起学习成长!
AI人工智能、Android移动开发、AIGC大模型、C C#、Go语言、Java、Linux运维、云计算、MySQL、PMP、网络安全、Python爬虫、UE5、UI设计、Unity3D、Web前端开发、产品经理、车载开发、大数据、鸿蒙、计算机网络、嵌入式物联网、软件测试、数据结构与算法、音视频开发、Flutter、IOS开发、PHP开发、.NET、安卓逆向、云计算