全文搜索
标题搜索
全部时间
1小时内
1天内
1周内
1个月内
默认排序
按时间排序
为您找到相关结果195,426个

echarts实现地图定时切换散点与多图表级联联动详解_javascript技巧_脚本...

gridIndex: 0, type: 'category', axisLabel: { show: true, textStyle: { color: '#ddd' } } }, { gridIndex: 1, type: 'value', axisLabel: { show: true, textStyle: { color: '#ddd' } } }], //布局e geo: { show: true, map: 'zhengzhou', label: { normal: { show: false ...
www.jb51.net/article/1452...htm 2025-3-20

Android 中RecyclerView多种item布局的写法(头布局+脚布局)

// mRecyclerView.setLayoutManager(new StaggeredGridLayoutManager(4,StaggeredGridLayoutManager.VERTICAL)); mLayoutManager = new LinearLayoutManager(this); mRecyclerView.setLayoutManager(mLayoutManager); mAdapter = new MyAdapter(this, mHeadList, mBodyList, mFootList); mRecyclerView.setAdapter(mAdapter...
www.jb51.net/article/1023...htm 2025-3-19

Java Swing SpringLayout弹性布局的实现代码_java_脚本之家

布局主要涉及三个类: SpringLayout、SpringLayout.Constraints、Spring,分别表示 布局管理器、约束、坐标距离。(1)SpringLayout 表示一个布局管理器,通过该布局管理器可以获取组件或容器的约束对象,如下:1 2 3 4 5 6 7 8 9 10 11 12 // 创建 弹性布局管理器 和 容器,容器 使用 弹性布局 SpringLayout ...
www.jb51.net/article/1757...htm 2025-3-10

Python可视化单词统计词频统计中文分词的实现步骤_python_脚本之家

# 页面布局 button1 = tk.Button(root, text='新建文件', bg='pink', font=('微软雅黑', 15), relief=RIDGE, command=fun1) button1.place(x=0, y=0, width=100, height=80) label1 = tk.Label(root, text='文件名:', font=('微软雅黑', 15), ) label1.grid(padx=100) text1 = tk....
www.jb51.net/article/2688...htm 2025-3-13

Android仿微信微博多图展示效果_Android_脚本之家

在项目的layout文件中添加如下xml即可加入到布局文件 1 2 3 4 5 <com.w4lle.library.NineGridlayout android:layout_marginTop="8dp" android:id="@+id/iv_ngrid_layout" android:layout_height="wrap_content" android:layout_width="match_parent"/> ...
www.jb51.net/article/1045...htm 2025-3-9

Android实现第三方授权登录、分享以及获取用户资料_Android_脚本之家

showGrid(false); break; case R.id.btnShareAll: showGrid(true); break; case R.id.btnUserInfo: // 获取自己的资料 Intent i = new Intent(this, GetInforActivity.class); startActivity(i); break; default: break; } } /** * 使用快捷分享完成图文分享 */ private void...
www.jb51.net/article/963...htm 2025-3-23

Android手把手教大家制作APP首页(下拉刷新、自动加载)_Android_脚本之...

app:ngv_mode="grid" app:ngv_singleImageRatio="1" app:ngv_singleImageSize="250dp"/> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="15dp" android:gravity="center_vertical" android:orientation="horizontal"> <View android:layout_wi...
www.jb51.net/article/1040...htm 2025-3-17

android自定义view之实现日历界面实例_Android_脚本之家

protected void onSizeChanged(int w, int h, int oldw, int oldh) { super.onSizeChanged(w, h, oldw, oldh); this.viewWidth = w; this.viewHeight = h; Log.d(TAG, "onSizeChanged" + w + h); cutGrid(); init(); setCellDay(); }首先...
www.jb51.net/article/1087...htm 2025-3-19

python tkinter控件布局项目实例_python_脚本之家

self.number.grid(row=1,column=1) #确定按钮 number = Button(frame_6,text="确定",command=self.getnumber) number.grid(row=1,column=2) #问题7 frame_7 frame_7 = Frame(master) frame_7.pack(fill=X) #问题 label_7 = Label(frame_7,text="7、印象最深的一天:") label_7.grid(row=1,col...
www.jb51.net/article/1734...htm 2025-2-4

Gird组件 Part-3:范例RSSFeed Viewer_YUI.Ext相关_脚本之家

GRID从柱模型中取得某一列的信息。在这个例子我们调用一个默认的柱模型(称DefaultColumnModel),一个包含所有相关的信息的对象。对象的属性如下: header:- 表头 width:- 宽度 sortable:- true=可排序 renderer:- 指定渲染方式。调用函数参数为 (value, rowIndex, columnIndex),并由函数返回(return)值来显示到单元格...
www.jb51.net/article/81...htm 2025-3-7