美文网首页
AndroidUi(1)-直线

AndroidUi(1)-直线

作者: C二叔 | 来源:发表于2016-09-21 12:47 被阅读0次

android中画线比较简单,常用的有实线和虚线

一.实线

Paste_Image.png
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"    android:shape="line">

<stroke  
android:width="2dp"  
android:color="#24cc0e"  />    

<!-- shape高度 -->    
<size android:height="10dp"  />

</shape>

二.虚线

Paste_Image.png
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"    android:shape="line">

<stroke  android:width="2dp"  
android:color="#24cc0e"        
android:dashGap="2dp"        
android:dashWidth="4dp" />    

<!-- shape高度 -->    
<size android:height="10dp" />

</shape>

Note:
stroke的android:width ,线的高度;
size的android:height,整个形状区域的高度;
引用虚线的view需要添加属性android:layerType="software"。

代码片段地址

相关文章

  • AndroidUi(1)-直线

    android中画线比较简单,常用的有实线和虚线 一.实线 二.虚线 Note:stroke的android:wi...

  • TextSwitcher

    AndroidUI组件之TextSwitcher

  • AndroidUI4Web:最适合Android开发者的WebA

    AndroidUI4Web框架 AndroidUI4Web是一个高性能的WebApp框架, 在移动浏览器上有与原生...

  • Android View的绘制流程分析

    1 Android UI 框架的核心类 在梳理View的绘制流程之前,我们先来熟悉一下AndroidUI框架中几个...

  • AndroidUI设计

    2017 春季最酷的 30 个 Android 库 【已翻译 100%】 原文翻译自 freecodecamp 的...

  • Android UI架构浅析

    1.AndroidUI架构 对于我们一个Activity,其对应的UI架构如下: 而UI类图关系是: 2.应用程序...

  • 布局

    今天主要是看了一下关于 AndroidUI的各种布局 linearlayout framelayout和relat...

  • AndroidUI屏幕适配

    目录 1.宽高限定符适配2.UI适配框架3.smallestWidth4.今日头条适配方案 使用dp能够适配绝大部...

  • AndroidUi(4)-圆环

    效果图 shape根元素有些属性只适用于ring类型:android:innerRadius 内环的半径andro...

  • AndroidUi(6)-selector

    selector可以用来实现不同状态之间的不同表现 selector标签,用多个item定义不同状态的表现。定义的...

网友评论

      本文标题:AndroidUi(1)-直线

      本文链接:https://www.haomeiwen.com/subject/golaettx.html