真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android怎么實(shí)現(xiàn)仿iPhone日期時(shí)間選擇器-創(chuàng)新互聯(lián)

本篇內(nèi)容介紹了“Android怎么實(shí)現(xiàn)仿iPhone日期時(shí)間選擇器”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)專業(yè)提供重慶服務(wù)器托管服務(wù),為用戶提供五星數(shù)據(jù)中心、電信、雙線接入解決方案,用戶可自行在線購買重慶服務(wù)器托管服務(wù),并享受7*24小時(shí)金牌售后服務(wù)。

先看效果圖

Android怎么實(shí)現(xiàn)仿iPhone日期時(shí)間選擇器

如何使用

import java.text.DateFormat; 
import java.text.ParseException; 
import java.text.SimpleDateFormat; 
import java.util.Calendar; 
 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.content.DialogInterface; 
import android.os.Bundle; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.EditText; 
 
public class MainActivity extends Activity { 
 WheelMain wheelMain; 
 EditText txttime; 
 DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); 
 
 @Override 
 public void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.main); 
  txttime = (EditText) findViewById(R.id.txttime); 
  Calendar calendar = Calendar.getInstance(); 
  txttime.setText(calendar.get(Calendar.YEAR) + "-" 
    + (calendar.get(Calendar.MONTH) + 1) + "-" 
    + calendar.get(Calendar.DAY_OF_MONTH) + ""); 
  Button btnselecttime = (Button) findViewById(R.id.button1); 
  btnselecttime.setOnClickListener(new OnClickListener() { 
 
   @Override 
   public void onClick(View arg0) { 
    LayoutInflater inflater = LayoutInflater 
      .from(MainActivity.this); 
    final View timepickerview = inflater.inflate( 
      R.layout.timepicker, null); 
    ScreenInfo screenInfo = new ScreenInfo(MainActivity.this); 
    wheelMain = new WheelMain(timepickerview, true); 
    wheelMain.screenheight = screenInfo.getHeight(); 
    String time = txttime.getText().toString(); 
    Calendar calendar = Calendar.getInstance(); 
    if (JudgeDate.isDate(time, "yyyy-MM-dd")) { 
     try { 
      calendar.setTime(dateFormat.parse(time)); 
     } catch (ParseException e) { 
      // TODO Auto-generated catch block 
      e.printStackTrace(); 
     } 
    } 
    int year = calendar.get(Calendar.YEAR); 
    int month = calendar.get(Calendar.MONTH); 
    int day = calendar.get(Calendar.DAY_OF_MONTH); 
    int h = calendar.getTime().getHours(); 
    int m = calendar.getTime().getMinutes(); 
    wheelMain.initDateTimePicker(year, month, day, h, m); 
    new AlertDialog.Builder(MainActivity.this) 
      .setTitle("選擇時(shí)間") 
      .setView(timepickerview) 
      .setPositiveButton("確定", 
        new DialogInterface.OnClickListener() { 
         @Override 
         public void onClick(DialogInterface dialog, 
           int which) { 
          txttime.setText(wheelMain.getTime()); 
         } 
        }) 
      .setNegativeButton("取消", 
        new DialogInterface.OnClickListener() { 
         @Override 
         public void onClick(DialogInterface dialog, 
           int which) { 
         } 
        }).show(); 
   } 
  }); 
 } 
}

“Android怎么實(shí)現(xiàn)仿iPhone日期時(shí)間選擇器”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


本文名稱:Android怎么實(shí)現(xiàn)仿iPhone日期時(shí)間選擇器-創(chuàng)新互聯(lián)
文章轉(zhuǎn)載:http://weahome.cn/article/gejhi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部