91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CalendarView怎么在Android中使用

發布時間:2021-04-01 17:53:59 來源:億速云 閱讀:239 作者:Leah 欄目:移動開發

CalendarView怎么在Android中使用?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

1.CalendarView是安卓自帶的一個日歷控件

2.在主活動中 通過設置setOnDataChangeListener() 來為其添加監聽事件

可在其中獲得 洪湖所選擇的年月日的 詳細信息

實例:

 CalendarView怎么在Android中使用

基本設置方法:

1. 日歷的整體背景顏色 android:selectedWeekBackgroundColor="#aff"
2. 月份選擇部分的背景色 android:focusedMonthDateColor="#f00"
3. 顯示星期的背景色 android:weekSeparatorLineColor="#ff0"
4. 被選中的日期的背景色 android:unfocusedMonthDateColor="#f9f"

這里給出它的布局文件中的調用與配置:

<?xml version="1.0" encoding="utf-8" ?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:gravity="center_horizontal"
  android:orientation="vertical">
    <TextView
      android:text="please choose your birthday :"
      android:gravity="center"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:textSize="15dp"
      android:typeface="monospace"/>
    <!--1.設置以星期二為每周第一天-->
    <!--2.設置該組件總共顯示四個星期-->
    <!--3.并對該組件的星期盡心了定制-->
    <CalendarView
      android:id="@+id/calenderView"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:firstDayOfWeek="3"
      android:shownWeekCount="4"
      android:selectedWeekBackgroundColor="#aff"
      android:focusedMonthDateColor="#f00"
      android:weekSeparatorLineColor="#ff0"
      android:unfocusedMonthDateColor="#f9f">
    </CalendarView>
</LinearLayout>

在主活動中,為其添加監聽事件后

可以通過 day month dayOfMonth 來獲得用戶選擇的日期的具體信息:

public class MainActivity extends Activity {
  CalendarView calendarView;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    calendarView = (CalendarView) findViewById(R.id.calenderView);
    //calendarView 監聽事件
    calendarView.setOnDateChangeListener(new CalendarView.OnDateChangeListener() {
      @Override
      public void onSelectedDayChange( CalendarView view, int year, int month, int dayOfMonth) {
        //顯示用戶選擇的日期
        Toast.makeText(MainActivity.this,year + "年" + month + "月" + dayOfMonth + "日",Toast.LENGTH_SHORT).show();
      }
    });
  }
}

關于CalendarView怎么在Android中使用問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

右玉县| 保德县| 云梦县| 兴业县| 布尔津县| 明星| 柳江县| 乌兰察布市| 桦甸市| 兴海县| 长治县| 高要市| 尼勒克县| 侯马市| 临沧市| 繁峙县| 邵东县| 浪卡子县| 印江| 青浦区| 胶南市| 许昌市| 申扎县| 博爱县| 五大连池市| 四子王旗| 休宁县| 河津市| 喜德县| 雷波县| 额尔古纳市| 平阳县| 泗阳县| 靖远县| 手机| 诏安县| 贵德县| 淮滨县| 金平| 东平县| 华阴市|