美文网首页
Android平台JSON预览(JSON-handle)

Android平台JSON预览(JSON-handle)

作者: 静默加载 | 来源:发表于2018-09-10 20:13 被阅读52次

    个人博客地址 http://dandanlove.com/

    JSON-handle

    Chrome常用的插件JSON-handle,用过的都知道。
    最近在做接口加密,所有的数据(requestresponse)都是加密数据,无法沟通fildder或者Charles抓包查看。那么自己做一个查看json``格式的View:支持动态的放大,缩小,支持所有数据格式~!

    json-handle.png

    效果图:

    json-handle.jpg

    GitHub地址: JsonHandleView

    依赖

    implementation 'com.tzx.json:jsonhandleview:1.0.0'
    

    使用

    <?xml version="1.0" encoding="utf-8"?>
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:orientation="vertical">
    
        <com.dandan.jsonhandleview.library.JsonViewLayout
            android:id="@+id/jsonView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    
    </FrameLayout>
    
    JsonViewLayout jsonViewLayout = findViewById(R.id.jsonView);
    jsonViewLayout.bindJson("your json strings." || JSONObject || JSONArray);
    

    自定义风格

    // Color
    jsonViewLayout.setKeyColor()
    jsonViewLayout.setObjectKeyColor()
    jsonViewLayout.setValueTextColor()
    jsonViewLayout.setValueNumberColor()
    jsonViewLayout.setValueNullColor()
    jsonViewLayout.setValueBooleanColor()
    jsonViewLayout.setArrayLengthColor()
    
    // TextSize
    jsonViewLayout.setTextSize()
    

    文章到这里就全部讲述完啦,若有其他需要交流的可以留言哦

    想阅读作者的更多文章,可以查看我 个人博客 和公共号:

    振兴书城

    相关文章

      网友评论

          本文标题:Android平台JSON预览(JSON-handle)

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