如何在单击timestamp
的那一刻将preferences
保存在共享的button
中?
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
//some logic...
}
});
答案 0 :(得分:1)
这是一段代码
{display: true ? 'block' : 'none' } === {display: true ? 'block' : 'none' } // false
// outside render
const BLOCK = {diplay: 'block'}
const NONE= {diplay: 'none'}
// in render
{this.state.showStore ? BLOCK : NONE}
有关SharedPreferences的更多详细信息:https://developer.android.com/training/data-storage/shared-preferences
答案 1 :(得分:1)
SELECT * FROM `System`
long timeStamp = preferences.getLong(“ TimeStamp”,0);
答案 2 :(得分:1)
就像这样:
New-TimeSpan -Start $Start_Timer -End $TotalExecutionTime
答案 3 :(得分:1)
您可以使用SimpleDateFormat在所需的时间戳中节省时间。
SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.US);
Date date=new Date(System.currentTimeMillis());
String formatDate=simpleDateFormat.format(date);
您可以参考here了解其他日期格式。并使用SharedPreference保存它。