gpt4 book ai didi

单击时启动 Activity 的android小部件

转载 作者:行者123 更新时间:2023-11-30 04:00:54 25 4
gpt4 key购买 nike

对我来说,我有一个带有按钮的按钮小部件,当我单击它时,它只是假设会启动一个 helloworld Activity 。我已经尝试在网上关注很多帖子,包括这个,但问题仍然存在。我按下按钮,没有任何反应。我正在研究 android 的 2.3 版。有人可以指出我做错了什么吗?

我的小部件:

public class IconWidgetProvider extends AppWidgetProvider {

@Override
public void onUpdate(final Context context, final AppWidgetManager appWidgetManager, final int[] appWidgetIds) {
final int N = appWidgetIds.length;

for (int i=0; i<N; i++) {
final Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
// first param is app package name, second is package.class of the main activity
final ComponentName cn = new ComponentName("com.followup","com.followup.FollowUpActivity");
intent.setComponent(cn);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
final PendingIntent myPI = PendingIntent.getActivity(context, 0, intent, 0);

final RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.icon_widget_layout);


views.setOnClickPendingIntent(R.id.image_in_widget, myPI);

final AppWidgetManager mgr = AppWidgetManager.getInstance(context); mgr.updateAppWidget(cn, views);
}
}

}

主屏幕图标信息.xml

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="146dip"
android:minHeight="72dip"
android:updatePeriodMillis="0"
android:initialLayout="@layout/icon_widget_layout" >
</appwidget-provider>

icon_widget_layout.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">


<Button android:name="@+id/image_in_widget"
android:contentDescription="@string/iconDescription"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight=".50"
android:clickable="true"
/>

</LinearLayout>

主要内容:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.followup"
android:versionCode="1"
android:versionName="1.0" >
.
.
.
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
.
.
.
<!-- Home icon widget -->
<receiver android:name="IconWidgetProvider"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/homescreeniconinfo" />
</receiver>

<activity
android:name=".FollowUpActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

</application>

</manifest>

最佳答案

您是否尝试过将事件处理程序添加到您的按钮?也许我在这里感到困惑,因为自从我真正进行了一些密集的 android 编程以来已经有一段时间了,但据我了解,这就是我过去所做的调用另一个 Intent 的操作......

<Button android:name="@+id/image_in_widget"
android:contentDescription="@string/iconDescription"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight=".50"
android:clickable="true"
android:onClick="onClickFunction"
/>

特别注意

android:onClick="onClickFunction"

“onClickFunction”将是您代码中某处的书面方法,在单击按钮时调用该方法

public void onClickFunction(View view){ 
//stuff to do on click
}

编辑这是直接从我过去编译并在我的 2.3 Android 手机上成功运行的 HelloWorld android 教程中摘录的这是 xml

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage" />

这是在主 .java 文件中

/* called when the user clicks a button */
public void sendMessage(View view)
{
Intent intent = new Intent(this, DisplayMessageActivity.class);
EditText editText = (EditText)findViewById(R.id.edit_message);
String message = editText.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
}

DisplayMessageActivity.class 是本质上是一个新应用程序的类(根据您的案例,我相信您希望它成为一个 Hello World 应用程序)

因此您将为那个调用的应用程序制作一个 XML 并更改/重写 DisplayMessageActivity 类来执行任何“HelloWorld”-ey 的东西......

关于单击时启动 Activity 的android小部件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12521857/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com