0

我尝试使用 Framelayout 创建布局。

下面我尝试但没有得到输出的代码。我想要像图像一样的输出。

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="left|top"
            android:src="@drawable/login_arrow" />

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="right|bottom"
            android:src="@drawable/login_fbsignup" />
    </FrameLayout>

在此处输入图像描述

4

1 回答 1

0

我会使用RelativeLayout而不是FrameLayout. 但更重要的是,我只制作一张图像并在没有任何布局容器的情况下使用

于 2013-04-08T14:14:35.503 回答