zoukankan      html  css  js  c++  java
  • android shape 的使用

    做个笔记,只是为了自己用的时候好找。

    background.xml

    <?xml version="1.0" encoding="utf-8"?>
    <!-- 默认为方形 可用android:shape调节形状 -->
    <shape xmlns:android="http://schemas.android.com/apk/res/android" >
        <!--颜色渐变   angle为渐变角度-->
        <gradient
            android:startColor="#FFD63DB7"
            android:endColor="#FF72CAE1"
            android:angle="90"  
            >
        </gradient>
        <!-- 设置圆角   -->
    	<corners android:radius="30dp"></corners>
    	
    	<!-- 内边距 -->
    	<padding android:top="20dp"></padding>
    	
    	<!-- 实心  就是填充的意思-->
    	<!-- <solid ></solid> -->
    	
    	<!-- 描边 -->
    	<stroke android:width="3dp" android:color="#5525B141"></stroke>
    </shape>
    

    布局里面调用

    <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"
        tools:context=".MainActivity" 
        android:background="@drawable/background">
    
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="测试" >
    
            </TextView>
    
        
    
    </RelativeLayout>
    

    效果图

    做的漂亮点可以直接替代图片。省app的大小了

  • 相关阅读:
    网络性能评估
    HTML5 historyState pushState、replaceState
    pre换行段落间距
    2、hibernate七步走完成增删改查
    8.多线程和Socket通信
    7..使用反射动态创建数组和访问数组
    5. Java反射机制
    11、触发器
    10.程序包
    9.函数
  • 原文地址:https://www.cnblogs.com/tangchd/p/3459109.html
Copyright © 2011-2022 走看看