我正在尝试将地图的缩放控件放在屏幕的右下角。我可以使用 alignParentBottom="true" 和 alignParentRight="true" 在RelativeLayout中做到这一点,但是在Framelayout中我找不到任何这样的属性。如何将其与屏幕右下角对齐?
alignParentBottom="true"
alignParentRight="true"
发布于 2011-05-06 18:26:11
实际上,这是可能的,尽管在其他答案中是这样说的。如果您有一个 FrameLayout ,并且想要将一个子项放置在底部,您可以使用 android:layout_gravity="bottom" ,这将使该子项与 FrameLayout 的底部对齐。
FrameLayout
android:layout_gravity="bottom"
我知道它是有效的,因为我正在使用它。我知道为时已晚,但这对其他人来说可能会很方便,因为这在谷歌上排名靠前
发布于 2012-09-22 16:56:16
我也遇到了这种情况,并想出了如何使用FrameLayout来做到这一点。以下输出由下面给出的代码生成。
<FrameLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/contactbook_icon" android:layout_gravity="center" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="140" android:textSize="12dp" android:textColor="#FFFFFF" android:layout_gravity="bottom|right" android:layout_margin="15dp" /> </FrameLayout>
更改边距值以调整图像上的文本位置。删除页边距有时可能会使文本从视图中消失。
发布于 2011-01-16 20:51:36
它可以使用 RelativeLayout 来实现
RelativeLayout
<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:src="@drawable/icon"