在两个彩色布局上设计一个圆形按钮 [英] Design a round button over two colored layouts

查看:78
本文介绍了在两个彩色布局上设计一个圆形按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试设计类似的东西:

I'm trying to design something like that :

当前,我在将按钮置于两个布局团聚点的中间"时遇到问题.我有办法吗?

Currently i'm having issue putting the button at "the middle" of the two layouts reunion point. Is there a way i do this ?

谢谢.

推荐答案

这是一种实现方法

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">


<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:weightSum="1">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.5"
        android:background="#FF0000">

        <!-- TO ADD CONTENT HERE -->

    </LinearLayout>


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.5"
        android:background="#FFFF00"
        android:weightSum="0.5">

        <!-- TO ADD CONTENT HERE -->

    </LinearLayout>

</LinearLayout>

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:background="#000000"
    android:text="TEST"
    android:textColor="#FFFFFF"/>

</RelativeLayout>

输出:

您可以从 android:layout_weight ="0.5"

这篇关于在两个彩色布局上设计一个圆形按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆