当前位置: 首页>>代码示例>>Java>>正文


Java DateFormat.getDateFormat方法代码示例

本文整理汇总了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();
}
 
开发者ID:changja88,项目名称:Android_Sunshine_Watch,代码行数:10,代码来源:MyWatchFace.java

示例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);
}
 
开发者ID:changja88,项目名称:Android_Sunshine_Watch,代码行数:36,代码来源:MyWatchFace.java

示例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;
}
 
开发者ID:mkulesh,项目名称:microMathematics,代码行数:10,代码来源:AdapterBaseImpl.java

示例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, ' '));
}
 
开发者ID:rkshuai,项目名称:chromium-for-android-56-debug-video,代码行数:42,代码来源:CertificateViewer.java


注:本文中的android.text.format.DateFormat.getDateFormat方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。