任何人都可以教下面图像的Xml布局

时间:2016-07-14 12:28:30

标签: android

enter image description here

任何人都可以教我如何将截图布局放在android studio xml中。?

2 个答案:

答案 0 :(得分:1)

使用这个概念

Linear Layout是包含orientation="vertical" ......

的父级布局

内部Linear布局ImageViewGridView .......

并使用custom adapter作为GridView .....

看起来像你的问题一样Image and Text GridView

这就是........

享受编码........

答案 1 :(得分:0)

你可以试试这个。

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

        <ScrollView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/scrollView2" >

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

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

                    <ImageView
                        android:layout_width="match_parent"
                        android:layout_height="150dp"
                        android:id="@+id/imageView3"
                        android:background="@drawable/pd5"/>
                </LinearLayout>

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

                    <LinearLayout
                        android:orientation="horizontal"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content">

                        <ImageView
                            android:layout_width="0dp"
                            android:layout_height="120dp"
                            android:id="@+id/imageView4"
                            android:layout_weight="1"
                            android:background="@drawable/pd2"
                            android:layout_margin="5dp" />

                        <ImageView
                            android:layout_width="0dp"
                            android:layout_height="120dp"
                            android:id="@+id/imageView5"
                            android:layout_weight="1"
                            android:background="@drawable/pd3"
                            android:layout_margin="5dp" />
                    </LinearLayout>
                    <LinearLayout
                        android:orientation="horizontal"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content">

                        <ImageView
                            android:layout_width="0dp"
                            android:layout_height="120dp"
                            android:id="@+id/imageView6"
                            android:layout_weight="1"
                            android:background="@drawable/pd2"
                            android:layout_margin="5dp" />

                        <ImageView
                            android:layout_width="0dp"
                            android:layout_height="120dp"
                            android:id="@+id/imageView7"
                            android:layout_weight="1"
                            android:background="@drawable/pd3"
                            android:layout_margin="5dp" />
                    </LinearLayout>
                    <LinearLayout
                        android:orientation="horizontal"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content">

                        <ImageView
                            android:layout_width="0dp"
                            android:layout_height="120dp"
                            android:id="@+id/imageView8"
                            android:layout_weight="1"
                            android:background="@drawable/pd2"
                            android:layout_margin="5dp" />

                        <ImageView
                            android:layout_width="0dp"
                            android:layout_height="120dp"
                            android:id="@+id/imageView9"
                            android:layout_weight="1"
                            android:background="@drawable/pd3"
                            android:layout_margin="5dp" />
                    </LinearLayout>
                </LinearLayout>
            </LinearLayout>
        </ScrollView>
    </LinearLayout>

对你来说很有帮助。