码迷,mamicode.com
首页 > 移动开发 > 详细

安卓 将按钮放置透明布局文件下

时间:2015-05-19 10:23:46      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

在xml中,标签从上到下的排列顺序,决定了在手机屏幕上的,位于上下层的顺序

 

如:<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"

      <!--灰色透明的LinearLayout-->

      <LinearLayout
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:background="#55CDCDC1">    

      </LinearLayout>

      <Button
              android:layout_width="50dp"
              android:layout_height="50dp" />

  </RelativeLayout>

如果这样写,按钮就在灰色透明的LinearLayout上面,

 

如果交换button和LinearLayout的位置,按钮就在灰色透明的LinearLayout下面

安卓 将按钮放置透明布局文件下

标签:

原文地址:http://www.cnblogs.com/wu-yun-jiang/p/4513737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!