- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建这个布局
然后我发现了这个
所以我创建了这个布局
<?xml version="1.0" encoding="utf-8"?>
<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.myapplication.MainActivity">
<View
android:id="@+id/square"
android:layout_width="100dp"
android:background="#ff0000"
android:layout_centerInParent="true"
android:layout_height="100dp"/>
<ImageView
android:id="@+id/circle"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignTop="@id/square"
android:layout_alignLeft="@id/square"
android:layout_marginRight="25dp"
android:layout_marginBottom="25dp"
android:src="@mipmap/circle" />
</RelativeLayout>
但是布局边距没有任何作用
输出与
相同<ImageView
android:id="@+id/circle"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignTop="@id/square"
android:layout_alignLeft="@id/square"
android:src="@mipmap/circle" />
如何将一个 View 的中心点与其他 View 的某个点对齐?
最佳答案
你好,我做了一个例子,希望对你有帮助
请检查以下代码的输出
<FrameLayout
android:id="@+id/FrameMove"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp">
<LinearLayout
android:id="@+id/linearFramelayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5dp"
android:layout_marginTop="10dp"
android:background="@drawable/frame_drawable"
android:gravity="center"
android:orientation="vertical"
android:paddingBottom="-50dp">
<TextView
android:id="@+id/txtMove"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:textSize="20sp"
android:textStyle="bold"/>
</LinearLayout>
<ImageView
android:id="@+id/imgClose"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|top"
android:layout_marginRight="-8dp"
android:layout_marginTop="-8dp"
android:src="@drawable/ic_action_close_white"/>
</FrameLayout>
关于android - 如何按中心点对齐 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37803860/
如何让div的中心点作为旋转的中心点。 我遇到了 this虽然我正在做一些研究,但我似乎无法将其融入我的研究。 这就是帖子所建议的。但不起作用。$(area).css('-webkit-transfo
您好,我正在做一个应用程序,在我的应用程序中有一个 map 页面,所以我实现了 Google Maps V2,我遇到了一个问题,当我滚动 map 时,我想获得 map 的中心点,如果我滚动 map ,
我正在玩一个简单的 2d 游戏,我正在尝试从级别 1(场景一)切换到级别 2(场景二)。为了测试,两个级别包含相同的内容。这是我的转换代码: let transition = SKTransi
我有一个覆盖大部分屏幕区域的 map 的 View 。 在 map 的顶部,我有一些图像、按钮、文本框。它们位于 map 的顶部,我在这里称其为“无用 map ”,而底部则用于实际查看 map 。这是
给定一个纯白色背景上的对象,有人知道 OpenCV 是否提供了从捕获的帧中轻松检测对象的功能吗? 我正在尝试定位对象(矩形)的角点/中心点。我目前这样做的方式是通过蛮力(扫描对象的图像)并且不准确。我
我试图确保我的 map 中心点位于 kml 层的边界内,我无法找到很多相关信息,但我修改了来自 here 的一些代码。这似乎可行,但当然行不通。 从 Google Maps API 中,我无法判断 .
我试图在用户滚动 UIScrollView 时创建一个非常简单的视差效果。我在我的 ScrollView 上使用 scrollViewDidScroll 方法,一切正常。我可以记录该方法的所有内容,因
我正在使用 svg.js 和出色的 svg-pan-zoom 插件 ( https://github.com/ariutta/svg-pan-zoom )。 现在我想要一个按钮,当我单击它时,它会在我
我是一名优秀的程序员,十分优秀!