码迷,mamicode.com
首页 >  
搜索关键字:separator intent    ( 3884个结果
APP内跳转链接用INTENT,但是用系统浏览器,在内部还是要webview
public void clickKefu() { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com")); getActivity().startActivity(intent); } ...
分类:移动开发   时间:2020-07-14 18:09:16    阅读次数:94
PHP函数number_format()
PHP的number_format() 函数通过千位分组来格式化数字。 语法: number_format(number,decimals,decimalpoint,separator) 注释:该函数支持一个、两个或四个参数(不是三个)。 1 <?php 2 /* number_format() 函 ...
分类:Web程序   时间:2020-07-13 18:49:48    阅读次数:98
处理elementui日期选择器获取的时间
<el-date-picker v-model="value1" type="daterange" size="small" range-separator="to" @change="getSTime" format="yyyy-MM-dd" start-placeholder="Start da ...
分类:其他好文   时间:2020-07-08 19:40:39    阅读次数:129
hive函数之~行转列与列转行
4、行转列 1.相关函数说明 CONCAT(string A/col, string B/col…):返回输入字符串连接后的结果,支持任意个输入字符串; CONCAT_WS(separator, str1, str2,...):它是一个特殊形式的 CONCAT()。第一个参数剩余参数间的分隔符。分隔 ...
分类:其他好文   时间:2020-07-05 21:37:44    阅读次数:56
video dialog 有影响力的论文详解
Multi-View Attention Networks for Visual Dialog * 切入点:问题的重点是哪个 ,需要充分理解才能抓住重点——给定问题的语义意图 determining the semantic intent of the given question and then ...
分类:其他好文   时间:2020-07-04 20:39:09    阅读次数:69
使用Android studio 离线打包uniapp
由于项目需求,使用了hbuilderx 他们家的uniapp框架,这个框架是基于微信小程序和vue衍生出来的,只要你会微信小程序和vue基本上都是很容易上手,关于他们的api,可以自行去官网查看,这里只是为了记录如何降低打包出来的apk的大小 本篇博客的前提是你的电脑Android的环境配置都已经配 ...
分类:移动开发   时间:2020-07-02 10:46:05    阅读次数:381
activity 之间传递参数
参考:http://c.biancheng.net/view/2923.html mainActivity中 通过intent 传递参数 class MyClickListener implements View.OnClickListener{ @Override public void onCl ...
分类:其他好文   时间:2020-07-01 12:42:53    阅读次数:53
C#读取文件中的浮点数据
string path = "test.txt"; FileStream fs = new FileStream(path, FileMode.Open); StreamReader sr = new StreamReader(fs); char[] separator = new char[] { ...
分类:Windows程序   时间:2020-06-30 20:43:53    阅读次数:78
os.path获取当前路径及父路径
import os pwd = os.getcwd() print("当前目录: " + pwd) father_path_method1 = os.path.dirname(pwd) print("当前目录的父目录_方式一: " + father_path_method1) separator = ...
分类:其他好文   时间:2020-06-29 11:28:09    阅读次数:136
策略模式
名称: 策略模式(Strategy Pattern) 问题: The intent of the Strategy Pattern is to define a family of algorithms, encapsulate each algorithm, and make them inter ...
分类:其他好文   时间:2020-06-28 20:11:35    阅读次数:55
3884条   上一页 1 2 3 4 5 6 ... 389 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!