如何在Android中添加覆盖视图超过其他视图?

前端之家收集整理的这篇文章主要介绍了如何在Android中添加覆盖视图超过其他视图?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想把按钮放在图像视图之上.

我该怎么办?

(请不要提供设置背景,因为我需要ImageView)

解决方法

设为背景!

只是开玩笑…你需要的是把你的意见放在一个RelativeLayout里.会有什么工作:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <ImageView
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"/>
    <Button
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignParentLeft="true"
       android:layout_alignParentBottom="true"
       android:text="blah blah"/>
</RelativeLayout>

请注意使用像layout_alignParentLeft这样的参数,用于将视图放置在所需的位置.

原文链接:https://www.f2er.com/android/311531.html

猜你在找的Android相关文章