- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 java 中创建了一个模拟时钟小部件,由于某种原因,我一直收到“问题加载小部件”,当我尝试放置小部件时,我从 logcat 得到的唯一东西是:
2020-11-18 19:19:13.162 9482-9482/? E/Zygote: isWhitelistProcess - Process is Whitelisted
2020-11-18 19:19:13.162 9482-9482/? E/Zygote: accessInfo : 1
2020-11-18 19:19:13.166 9482-9482/? I/ckcustomizatio: Late-enabling -Xcheck:jni
2020-11-18 19:19:13.182 9482-9482/? E/ckcustomizatio: Unknown bits set in runtime_flags: 0x8000
2020-11-18 19:19:13.196 9482-9482/com.l_es.analogclockcustomization D/ActivityThread: setConscryptValidator
2020-11-18 19:19:13.196 9482-9482/com.l_es.analogclockcustomization D/ActivityThread: setConscryptValidator - put
小部件只是一个黑色方 block ,上面有“问题加载小部件”。
public class MainWidget extends AppWidgetProvider {
static RemoteViews views;
//preferences
private static SharedPreferences custClockPrefs;
//number of possible designs
private static int numClocks;
//IDs of Analog Clock elements
static int[] clockDesigns;
public void onReceive(Context context, Intent intent) {
numClocks = context.getResources().getInteger(R.integer.num_clocks);
clockDesigns = new int[numClocks];
for(int d = 0; d < numClocks; d++){
clockDesigns[d] = context.getResources().getIdentifier
("AnalogClock"+d, "id", context.getPackageName());
}
//find out the action
String action = intent.getAction();
//is it time to update
if(AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals(action)) {
views = new RemoteViews(context.getPackageName(),
R.layout.clock_widget_layout);
AppWidgetManager.getInstance(context).updateAppWidget
(intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS), views);
custClockPrefs = context.getSharedPreferences("CustomClockPrefs", 0);
int chosenDesign = custClockPrefs.getInt("clockdesign", 0);
if(chosenDesign >= 0){
for(int d = 0; d < numClocks; d++){
if(d != chosenDesign)
views.setViewVisibility(clockDesigns[d], View.INVISIBLE);
}
views.setViewVisibility(clockDesigns[chosenDesign], View.VISIBLE);
}
Intent choiceIntent = new Intent(context, ClockChoice.class);
PendingIntent clickPendIntent = PendingIntent.getActivity
(context, 0, choiceIntent, PendingIntent.FLAG_UPDATE_CURRENT);
views.setOnClickPendingIntent(R.id.custom_clock_widget, clickPendIntent);
}
}
}
这是我用来绘制时钟的绘制函数:
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
final float w = (float) getWidth() / 2;
final float h = (float) getHeight() / 2;
final int saveCount = canvas.save();
canvas.translate(w, h);
final float scale = Math.min((float) w / mDial.getIntrinsicWidth(),
(float) h / mDial.getIntrinsicHeight());
if (scale < 1f) {
canvas.scale(scale, scale, 0f, 0f);
}
mDial.draw(canvas);
final float hourAngle = mTime.get(Calendar.HOUR) * 30f;
canvas.rotate(hourAngle, 0f, 0f);
mHourHand.draw(canvas);
final float minuteAngle = mTime.get(Calendar.MINUTE) * 6f;
canvas.rotate(minuteAngle - hourAngle, 0f, 0f);
mMinuteHand.draw(canvas);
if (mEnableSeconds) {
final float secondAngle = mTime.get(Calendar.SECOND) * 6f;
canvas.rotate(secondAngle - minuteAngle, 0f, 0f);
mSecondHand.draw(canvas);
}
canvas.restoreToCount(saveCount);
}
这是我的小部件布局文件,请记住,我每次都将 3 个中的 2 个设置为“消失”的可见性:
<?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"
android:id="@+id/custom_clock_widget"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/clock_margin"
android:gravity="center">
<com.l_es.analogclockcustomization.AnalogClockDesign
android:id="@+id/AnalogClock0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:showSecondHand="false"
app:dial="@drawable/clock_dial_2"
app:hour="@drawable/clock_hour_hand_2"
app:minute="@drawable/clock_minute_hand_2"/>
<com.l_es.analogclockcustomization.AnalogClockDesign
android:id="@+id/AnalogClock1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:showSecondHand="false"
app:dial="@drawable/clock_dial_3"
app:hour="@drawable/clock_hour_hand_3"
app:minute="@drawable/clock_minute_hand_3"/>
<com.l_es.analogclockcustomization.AnalogClockDesign
android:id="@+id/AnalogClock2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:showSecondHand="false"
app:dial="@drawable/clock_dial_4"
app:hour="@drawable/clock_hour_hand_4"
app:minute="@drawable/clock_minute_hand_4"/>
</RelativeLayout>
clock_widget.xml:
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:initialLayout="@layout/clock_widget_layout"
android:minWidth="146dp"
android:minHeight="146dp"
android:previewImage="@mipmap/ic_launcher"
android:resizeMode="vertical|horizontal"
android:updatePeriodMillis="0"
android:widgetCategory="home_screen">
</appwidget-provider>
最佳答案
检查您在小部件中的 View 中使用的元素..
Documentation link
RemoteViews 对象(以及相应的 App Widget)可以支持以下布局类:
关于java - Android问题加载小部件-logcat中没有错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64898244/
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 4 年前。 Improve
我在终端中使用“adb -d logcat”来查看我的应用程序日志文件。最近,我遇到了一大堆运行时错误——由于某种原因我看不到所有这些错误。它只是在结尾处以“...30 more”结束: [ 08-1
我的 Logcat 停止与我的“开发者设备”Huawei Y5 一起工作。 我使用完全更新的 Android 3.5.1,直到两天前一切正常,现在突然我的应用程序日志不再显示了。 logcat 显示以
我使用 Eclipse 开发应用程序。当我转到 eclipse 的菜单窗口-> 显示 View -> 其他时,我发现两个项目名为“LogCat”和“LogCat(deprecated)”。 LogCa
我在我的应用程序中使用 Timber 和 DebugTree。我想将所有消息记录到 Firebase 崩溃报告中。 Timber.plant(object : Timber.DebugTree()
在 Moto G 上开发我的应用程序时,我经常遇到数以万计的以下消息淹没日志。 E/MM_OSAL ( 275): isSamePayload Sync byte(0x47) not found!!
在注意到 Android Studio 中没有显示 Logcat 消息后,我尝试了所有解决方案,但都没有奏效。我最终尝试了命令 adb devices 并确定我的设备在那里,但是当我尝试 adb lo
来自命令:C:\android-sdk-windows\platform-tools>adb shell 然后是 logcat -b radio 它打印旧的历史日志。我试着像这样调用 logcat -
我每15分钟就会遇到“blank logcat”或“logcat bug”的问题,随意告诉它! 我知道以下解决方案可以解决此问题: 进入 DDMS 并选择我的设备 => 80% 的情况下,logcat
请原谅我没有以完整尺寸显示 Logcat(到目前为止,我使用的是 RAM 和图形内存有限的 VM)。 每次启动 Eclipse 时,Logcat 都会像这样显示所有这些信息列(红色圆圈)。 现在,我想
我正在尝试运行 react-native log-android 来测试在我的 react-native 手机应用程序上上传谷歌照片。我得到错误 warn The following packages
对于 Android 应用程序,我将日志保存在设备本身上,以便在出现问题时我们可以找出问题所在。此设备在无互联网环境中运行,因此无法远程写入日志。 下面的代码首先清除缓冲区,然后将记录的内容连续写入“
显示 LogCat 几分钟后消失。我从 Window->Preferences->Logcat 中将 LogCat 输出消息的数量更改为 10000。但在读取整个堆栈之前仍然消失。知道为什么会发生这种
我有一些与 Android Logcat 相关的问题,我将这些问题称为 REAL DEVICE 而不是模拟器: 我有一个程序有很多 Log.d (或其他类似的日志功能),我做了一些谷歌搜索,发现这些日
我收到很多与我的应用程序相关的此类 logcat 消息。 2019-03-13 10:05:51.065 27319-27319/com.example.fir_s1 I/chatty: uid=10
我正在对一个奇怪的错误进行故障排除,当不良行为发生时,我在 logcat 中看到了这一点。 --------- beginning of system 这是什么意思?我没有找到任何 nativ
我想通过 APPIUM 获取特定标签(例如:testing_aws)的 ADB logcats。实际上我是直接从控制台完成此操作的,如下所示 我导航至 /home/jagadeesh/android-
我刚刚开始使用 android,正在制作一个 webview 应用程序 我的整个计划是显示启动屏幕,直到 webview 加载,然后切换某些内容的可见性,然后使 webview 可见 WebView
我刚刚在运行 Mountain Lion 的 Mac 上安装了 Eclipse 3.8。我打开了 LogCat 窗口并点击最小化,它去了某个地方...... 现在当我点击 Window>Show Vi
我使用 Parse 作为我的应用程序的后端,并且我使用了他们的 quick start guide设置推送通知。 我已经一步一步地跟着它了,没有得到插入。当我启动应用程序时,我还在 logcat 中收
我是一名优秀的程序员,十分优秀!