流失布局

匿名 (未验证) 提交于 2019-12-03 00:22:01



需要一个工具类FlowLayout


下面是MainActivity

MainActivity布局

主意一点 红线部分




主布局里面有个引用的

item布局

新建一个xml文件

<?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:padding="10dp"     android:gravity="center"     android:background="@drawable/textview_bg"     android:textSize="13sp"     android:textColor="#333333"     >  </TextView> 


爆红的地方需要一个xml文件

drawable文件下创建xml文件


<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"     android:shape="rectangle" >     <solid android:color="#ffffff"/>     <stroke android:width="1dp" android:color="#dedede"/>     <corners android:radius="20dp"/> </shape>

没了


文章来源: 流失布局
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!