gpt4 book ai didi

android - 在android中点击更新应用程序小部件

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:55:12 24 4
gpt4 key购买 nike

我正在开发 Android 小部件,我的小部件如下图所示,[prev] Activity 名称 [next]

prev,next 是小部件上的按钮。所以我想在单击 next 和 prev 按钮时更新事件名称。在服务启动时,我加载数据并将其存储在数组列表中。现在我想通过单击小部件上的下一个和上一个按钮来遍历数组列表。

那么我怎样才能做到这一点。请帮我找到合适的解决方案。这是我的 xml 布局

<LinearLayout
android:id="@+id/lytWidget2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:orientation="horizontal" >

<Button
android:id="@+id/btnPreviousView"
android:layout_width="43dp"
android:layout_height="fill_parent"
android:layout_gravity="left|center"
android:background="@drawable/ic_leftarrow"
android:padding="5dip" />

<TextView
android:layout_width="wrap_content"
android:layout_height="52dp"
android:layout_weight="0.97"
android:text="Event Name" />

<Button
android:id="@+id/btnNextView"
android:layout_width="43dp"
android:layout_height="fill_parent"
android:layout_gravity="right|center_vertical"
android:background="@drawable/ic_rightarrow"
android:padding="5dip" />
</LinearLayout>

最佳答案

因此,只需像这样处理 AppWidgetProvider 类中按钮的点击事件。请参阅这个关于如何创建简单小部件的好教程。还添加了点击处理程序。

示例代码

 @Override 
public void onReceive(Context context, Intent intent)
{
super.onReceive(context, intent);

RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget);
// find your TextView here by id here and update it.

Toast.makeText(context, "Clicked!!", Toast.LENGTH_SHORT).show();
}

关于android - 在android中点击更新应用程序小部件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8635501/

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