android studio lucasr.dspec UI design

来源:互联网 发布:如何提高情商 知乎 编辑:程序博客网 时间:2024/06/04 23:32

github:https://github.com/lucasr/dspec

在gradle添加依赖:

compile 'org.lucasr.dspec:dspec:0.1.1'
在res中新建raw,raw中新建text
copy:
{    "baselineGridVisible": true,    "baselineGridCellSize": 8,    "keylines": [        { "offset": 16,          "from": "LEFT" },        { "offset": 72,          "from": "LEFT" },        { "offset": 16,          "from": "RIGHT" }    ],    "spacings": [        { "offset": 0,          "size": 16,          "from": "LEFT" },        { "offset": 56,          "size": 16,          "from": "LEFT" },        { "offset": 0,          "size": 16,          "from": "RIGHT" }    ]}
在navigation的fragment内容放到:
<org.lucasr.dspec.DesignSpecFrameLayout android:layout_width="match_parent"    android:layout_height="match_parent"    xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    app:designSpec="@raw/spec">

0 0