本文整理汇总了Java中android.text.format.DateFormat.getDateFormat方法的典型用法代码示例。如果您正苦于以下问题:Java DateFormat.getDateFormat方法的具体用法?Java DateFormat.getDateFormat怎么用?Java DateFormat.getDateFormat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.text.format.DateFormat
的用法示例。
在下文中一共展示了DateFormat.getDateFormat方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onReceive
import android.text.format.DateFormat; //导入方法依赖的package包/类
@Override
public void onReceive(Context context, Intent intent) {
mCalendar.setTimeZone(TimeZone.getDefault());
dayOfWeekFormat = new SimpleDateFormat("EEEE", Locale.getDefault());
dayOfWeekFormat.setCalendar(mCalendar);
dateFormat = DateFormat.getDateFormat(MyWatchFace.this);
dateFormat.setCalendar(mCalendar);
invalidate();
}
示例2: onCreate
import android.text.format.DateFormat; //导入方法依赖的package包/类
@Override
public void onCreate(SurfaceHolder holder) {
super.onCreate(holder);
setWatchFaceStyle(new WatchFaceStyle.Builder(MyWatchFace.this)
.setCardPeekMode(WatchFaceStyle.PEEK_MODE_VARIABLE)
.setBackgroundVisibility(WatchFaceStyle.BACKGROUND_VISIBILITY_INTERRUPTIVE)
.setShowSystemUiTime(false)
.build());
Resources resources = MyWatchFace.this.getResources();
googleApiClient = new GoogleApiClient.Builder(MyWatchFace.this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(Wearable.API)
.build();
googleApiClient.connect();
// Colors
mBackgroundPaint = new Paint();
mBackgroundPaint.setColor(resources.getColor(R.color.orange));
hourPaint = createTextPaint(resources.getColor(R.color.white));
minutePaint = createTextPaint(resources.getColor(R.color.white));
colonPaint = createTextPaint(resources.getColor(R.color.white));
highPaint = createTextPaint(resources.getColor(R.color.white));
lowPaint = createTextPaint(resources.getColor(R.color.white));
// Initialize member variables
mCalendar = Calendar.getInstance();
date = new Date();
dayOfWeekFormat = new SimpleDateFormat("EEEE", Locale.getDefault());
dayOfWeekFormat.setCalendar(mCalendar);
dateFormat = DateFormat.getDateFormat(MyWatchFace.this);
dateFormat.setCalendar(mCalendar);
}
示例3: AdapterBaseImpl
import android.text.format.DateFormat; //导入方法依赖的package包/类
protected AdapterBaseImpl(Context ctx_, int mode_)
{
ctx = ctx_;
mode = mode_;
mInflater = (LayoutInflater) ctx.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
localeDateFormat = DateFormat.getDateFormat(ctx);
localeTimeFormat = DateFormat.getTimeFormat(ctx);
density = ctx.getResources().getDisplayMetrics().density;
}
示例4: addCertificateDetails
import android.text.format.DateFormat; //导入方法依赖的package包/类
private void addCertificateDetails(Certificate cert, byte[] sha256Digest, byte[] sha1Digest) {
LinearLayout certificateView = new LinearLayout(mContext);
mViews.add(certificateView);
certificateView.setOrientation(LinearLayout.VERTICAL);
X509Certificate x509 = (X509Certificate) cert;
SslCertificate sslCert = new SslCertificate(x509);
mTitles.add(sslCert.getIssuedTo().getCName());
addSectionTitle(certificateView, nativeGetCertIssuedToText());
addItem(certificateView, nativeGetCertInfoCommonNameText(),
sslCert.getIssuedTo().getCName());
addItem(certificateView, nativeGetCertInfoOrganizationText(),
sslCert.getIssuedTo().getOName());
addItem(certificateView, nativeGetCertInfoOrganizationUnitText(),
sslCert.getIssuedTo().getUName());
addItem(certificateView, nativeGetCertInfoSerialNumberText(),
formatBytes(x509.getSerialNumber().toByteArray(), ':'));
addSectionTitle(certificateView, nativeGetCertIssuedByText());
addItem(certificateView, nativeGetCertInfoCommonNameText(),
sslCert.getIssuedBy().getCName());
addItem(certificateView, nativeGetCertInfoOrganizationText(),
sslCert.getIssuedBy().getOName());
addItem(certificateView, nativeGetCertInfoOrganizationUnitText(),
sslCert.getIssuedBy().getUName());
addSectionTitle(certificateView, nativeGetCertValidityText());
java.text.DateFormat dateFormat = DateFormat.getDateFormat(mContext);
addItem(certificateView, nativeGetCertIssuedOnText(),
dateFormat.format(sslCert.getValidNotBeforeDate()));
addItem(certificateView, nativeGetCertExpiresOnText(),
dateFormat.format(sslCert.getValidNotAfterDate()));
addSectionTitle(certificateView, nativeGetCertFingerprintsText());
addItem(certificateView, nativeGetCertSHA256FingerprintText(),
formatBytes(sha256Digest, ' '));
addItem(certificateView, nativeGetCertSHA1FingerprintText(),
formatBytes(sha1Digest, ' '));
}