当前位置:   article > 正文

Android Studio 自定义布局Layout_android studio layout

android studio layout

使用引入布局的方法解决相同标题栏代码重复的问题

  1. 将图片资源放在drawable文件夹里
    在这里插入图片描述
  2. 新建***.xml文件编辑标题栏
    在这里插入图片描述
    在这里插入图片描述
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/background">

    <Button
        android:id="@+id/button"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_gravity="center"
        android:layout_margin="3dp"
        android:background="@drawable/back2"
        android:textColor="#663366"
        android:gravity="bottom"
        android:textSize="15sp"
        android:text="         返回"/>

    <TextView
        android:id="@+id/title_text"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1"
        android:gravity="center"
        android:text="标题"
        android:textSize="30sp"
        android:textColor="#CC3399"/>

    <Button
        android:id="@+id/edit"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:gravity="bottom"
        android:layout_margin="5dp"
        android:background="@drawable/edit2"
        android:text="          编辑"
        android:textSize="15sp"
        android:textColor="#663366"/>

</LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41

在这里插入图片描述

  1. 没有正常显示出来,需要在themes.xml中设置显示风格
    在这里插入图片描述
    修改前
    在这里插入图片描述
    在这里插入图片描述
    修改后
    在这里插入图片描述
  2. 在程序中使用标题栏:在activity_main.xml中引入标题栏文件
    在这里插入图片描述
  3. 在MainActivity中将系统自带的标题栏隐藏掉
ActionBar actionBar=getSupportActionBar();
if(actionBar != null){
    actionBar.hide();
}
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述
运行结果:
在这里插入图片描述
隐藏之前
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/377297
推荐阅读
相关标签
  

闽ICP备14008679号