Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何获取此xml android布局_Android_Xml_Android Layout_Layout_Android Gridlayout - Fatal编程技术网

如何获取此xml android布局

如何获取此xml android布局,android,xml,android-layout,layout,android-gridlayout,Android,Xml,Android Layout,Layout,Android Gridlayout,我看过这个布局(),我想做一些类似的事情,但我不知道我要做什么才能得到这个结果。 我试过使用包含imageview的相对布局和包含三个imagebutton的gridlayout <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"

我看过这个布局(),我想做一些类似的事情,但我不知道我要做什么才能得到这个结果。 我试过使用包含imageview的相对布局和包含三个imagebutton的gridlayout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.prova.MainActivity$PlaceholderFragment" xmlns:app="http://schemas.android.com/apk/res/com.example.prova">

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="90dp"
    android:layout_height="90dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/profile" />

<android.support.v7.widget.GridLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@+id/imageView1"
    app:columnCount="3"
    app:orientation="horizontal"
    app:rowCount="1"
    app:useDefaultMargins="false" >

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_gravity="fill_horizontal"
        android:scaleType="center"
        android:src="@drawable/friend" />

    <ImageButton
        android:id="@+id/imageButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_gravity="fill_horizontal"
        android:maxHeight="100dp"
        android:src="@drawable/fotocamera" />

    <ImageButton
        android:id="@+id/imageButton3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"

        android:src="@drawable/eventi" />
</android.support.v7.widget.GridLayout>

</RelativeLayout> 


但是我没有得到与图片顶部相同的结果。 我尝试过改变重力值和宽度值,但什么都没有。
你能帮助我吗???(很抱歉我的英语不好:P谢谢)。

我编写了您的代码以获得以下信息: 这是一个更好的结果,但我不明白为什么imagebutton之间有空格。 我的代码是:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res/com.example.prova"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.prova.MainActivity$PlaceholderFragment" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="4" >

    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:src="@drawable/profile" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="3"
        android:orientation="vertical"
        android:weightSum="3" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="2"
            android:weightSum="3" >

            <ImageButton
                android:id="@+id/imageButton2"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:src="@drawable/friend" />

            <ImageButton
                android:id="@+id/imageButton3"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:src="@drawable/fotocamera" />

            <ImageButton
                android:id="@+id/imageButton4"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:src="@drawable/eventi" />

        </LinearLayout>

        <Button
            android:id="@+id/button1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Aggiungi agli amici" />

    </LinearLayout>

</LinearLayout>


有什么想法吗???

你的结果是什么?可能发布屏幕截图,因为布局非常复杂。你到底想实现什么?这是网格布局中的三个按钮不会占据所有水平空间的结果。你可能在某个地方设置了一些边距-查看“值”文件夹中的主题、样式和尺寸文件