上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 60 下一页
摘要: package nd.no.xww.bottomnavigationlayout; import android.content.Context;import android.support.annotation.NonNull;import android.support.v7.widget.Re 阅读全文
posted @ 2019-08-13 17:02 水至清明 阅读(115) 评论(0) 推荐(0) 编辑
摘要: //设置网格布局样式,2为列数 gridRecycler.setLayoutManager(new GridLayoutManager(getContext(), 2)); gridRecycler.setAdapter(new RecyclerGridAdapter(getContext(), g 阅读全文
posted @ 2019-08-13 17:02 水至清明 阅读(698) 评论(0) 推荐(0) 编辑
摘要: 最后一个布局样式是瀑布流的布局,其实和网格布局几乎一样的,网格布局是规规矩矩的,而瀑布流就是有长有短的那种,有错位和落差感,有时候太规矩的不好看,有一点错位显得更加美观。 ? ? 瀑布流的?RecyclerView Item 布局文件要注意了,不能写固定的一个高度,否则就没有效果了。比如,我们得这样 阅读全文
posted @ 2019-08-13 17:02 水至清明 阅读(160) 评论(0) 推荐(0) 编辑
摘要: // 设置瀑布流形式,2为两列 staggerRecycler.setLayoutManager(new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL)); // 设置适配器 staggerRecycler.set 阅读全文
posted @ 2019-08-13 17:02 水至清明 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 上面我们介绍的就是?RecyclerView 线性布局的使用,效果还是不错的,一般可以用于浏览个人信息列表操作。接着,我们来看第二种布局形式:网格布局。 ? ? 网格布局也是非常常用的,一般用于图片相册的浏览,接下来的工作就是复制粘贴一下原先的代码就可以了,因为适配器里面的代码几乎一个样,我们可以考 阅读全文
posted @ 2019-08-13 17:01 水至清明 阅读(238) 评论(0) 推荐(0) 编辑
摘要: private int curATK;private int curAtkKey;public int CurATK { get { return curATK ^ curAtkKey; } set { curAtkKey = Random.Range(http://www.my516.com); 阅读全文
posted @ 2019-08-12 21:10 水至清明 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 画板类的代码: package 画图板重绘; import java.awt.FlowLayout;import java.awt.Graphics; import javax.swing.JButton;import javax.swing.JFrame; //画板类public class Hu 阅读全文
posted @ 2019-08-12 21:10 水至清明 阅读(177) 评论(0) 推荐(0) 编辑
摘要: package 画图板重绘; import java.awt.Graphics;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.MouseEvent;import 阅读全文
posted @ 2019-08-12 21:10 水至清明 阅读(289) 评论(0) 推荐(0) 编辑
摘要: package 画图板重绘; import java.awt.Graphics; import javax.swing.JFrame; public class Rejframe extends JFrame{ Shape[] s; public void paint(Graphics g){ // 阅读全文
posted @ 2019-08-12 21:10 水至清明 阅读(102) 评论(0) 推荐(0) 编辑
摘要: //创建图形类数组,每个单元存放一个图形 Shape[] s = new Shape[10]; //下标 int index=0; public void mouseReleased(MouseEvent e){ x2 = e.getX(); y2 = e.getY(); if("直线".equal 阅读全文
posted @ 2019-08-12 21:10 水至清明 阅读(149) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 60 下一页