作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在“操作”按钮的右侧有一个提交按钮:
我试过使用代码:
android:gravity="bottom|right"
但它不起作用,它仍然停留在同一个地方。
我的完整代码是这样的:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="bottom"
android:keepScreenOn="true"
android:textSize="25dp"
android:padding="30dp"
android:textStyle="bold"
android:textAlignment="center"
android:text="@string/select_action"
android:id="@+id/btnSelectPhoto"
android:layout_alignParentBottom="true"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/btnSelectPhoto"
android:keepScreenOn="true"
android:gravity="bottom|right"
android:padding="30dp"
android:text="@string/submit"
android:textSize="25dp"
android:textStyle="bold"
android:id="@+id/btnSubmit"
android:layout_alignParentBottom="true"
/>
即使使用上面的代码,布局仍然与图像相同。我该如何解决这个问题?
修复:添加了 android:layout_alignParentRight="true",感谢 Egor N。
最佳答案
android:layout_alignParentRight="true"
应该可以完成这项工作。但是,您应该摆脱 android:layout_toRightOf="@id/btnSelectPhoto"
。
android:gravity
不起作用,因为此值应用于 View 内的内容(按钮内的文本)。
关于android - 将按钮对齐到屏幕的右下角?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26689574/
我是一名优秀的程序员,十分优秀!