在android时钟应用程序图标显示正确的模拟实时在图标,甚至日历应用程序图标显示今天的日期。如何在应用中实现实时图标?

发布于 2019-11-28 13:19:25
您必须创建一个小部件应用程序才能实现此目的,
https://developer.android.com/guide/topics/appwidgets#
理想情况下,您将使用以下内容进行活动
<activity android:name=".ClockChoice">
</activity>它由xml中的模拟时钟组成,例如
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<AnalogClock
android:layout_marginTop="20dp"
android:layout_marginLeft="120dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout> 然后按照https://developer.android.com/guide/topics/appwidgets#文档添加小部件
https://stackoverflow.com/questions/59082097
复制相似问题