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

在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下面

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。