在Light中弹出一些视图并将一些视图放在Shade XML Android中

时间:2016-01-08 13:36:54

标签: android xml

我想在下面的XML

中创建这样的视图

VIEW IMAGE

当用户点击编辑模式时,会有一些视图遮挡并弹出一些视图以便点亮。

是否可以这样做?

<?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:background="#feca81"
    android:paddingTop="15dp">

    <View1
        android:id="@+id/shareIconInProfile"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/favIconInProfile"
        android:layout_alignParentLeft="true"
        android:layout_alignTop="@+id/fullNameField"
        android:layout_marginLeft="10dp"
        android:background="@drawable/share_icon" />

    <View2
        android:id="@+id/locIconInProfile"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignRight="@+id/favIconInProfile"
        android:layout_alignTop="@+id/fullNameField"
        android:layout_marginRight="10dp"
        android:background="@drawable/loc_icon" />

    <View3
        android:id="@+id/badgeIconInProfile"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:background="@drawable/put_badge_icon_in_profile" />

    <View4
        android:id="@+id/linearLayout1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:orientation="horizontal"/>

    <View5
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:background="@drawable/rounded_bg"
        android:ems="10"
        android:gravity="center_horizontal" />


</RelativeLayout>

以下是切换到编辑模式的示例代码

profileImg.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
         //Do some stuff here which I dont know how to
        }
    });

如果你知道怎么做,请帮助我 提前致谢

0 个答案:

没有答案