微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

发送Textview到小部件

如何解决发送Textview到小部件

我将为倒计时创建一个小部件。布局已完成,但是我无法将Mainactivity的Textview发送到小部件。我尝试了很多其他人在这里发布的不同操作,但是没有用。我是App编程的初学者,我希望有人可以很轻松地描述这一点。 我尝试了这个(How to share data between activity and widget?),但也许我忘记了一些行不通的方法

这是我的MainActivity代码

public class MainActivity extends AppCompatActivity {

    private TextView txtTimerDay,txtTimerHour,txtTimerMinute,txtTimerSecond;
    private TextView tvEvent;
    private Handler handler;
    private Runnable runnable;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        txtTimerDay = (TextView) findViewById(R.id.txtTimerDay);
        txtTimerHour = (TextView) findViewById(R.id.txtTimerHour);
        txtTimerMinute = (TextView) findViewById(R.id.txtTimerMinute);
        txtTimerSecond = (TextView) findViewById(R.id.txtTimerSecond);
        tvEvent = (TextView) findViewById(R.id.tvhappyevent);
        setContentView(R.layout.widget);
        txtTimerDay = (TextView) findViewById(R.id.txtTimerDay);
        txtTimerHour = (TextView) findViewById(R.id.txtTimerHour);
        txtTimerMinute = (TextView) findViewById(R.id.txtTimerMinute);
        txtTimerSecond = (TextView) findViewById(R.id.txtTimerSecond);
        countDownStart();
    }
    public void countDownStart() {
        handler = new Handler();
        runnable = new Runnable() {
            @Override
            public void run() {
                handler.postDelayed(this,1000);
                try {
                    SimpleDateFormat dateFormat = new SimpleDateFormat(
                        "yyyy-MM-dd");
                    // Please here set your event date//YYYY-MM-DD
                    Date futureDate = dateFormat.parse("2021-12-24");
                    Date currentDate = new Date();
                    if (!currentDate.after(futureDate)) {
                        long diff = futureDate.getTime()
                                - currentDate.getTime();
                        long days = diff / (24 * 60 * 60 * 1000);
                        diff -= days * (24 * 60 * 60 * 1000);
                        long hours = diff / (60 * 60 * 1000);
                        diff -= hours * (60 * 60 * 1000);
                        long minutes = diff / (60 * 1000);
                        diff -= minutes * (60 * 1000);
                        long seconds = diff / 1000;
                        txtTimerDay.setText("" + String.format("%02d",days));
                        txtTimerHour.setText("" + String.format("%02d",hours));
                        txtTimerMinute.setText(""
                                + String.format("%02d",minutes));
                        txtTimerSecond.setText(""
                                + String.format("%02d",seconds));
                    } else {
                        tvEvent.setVisibility(View.VISIBLE);
                        tvEvent.setText("The event started!");
                        textViewGone();
                    }
                } catch (Exception e) {
                    e.printstacktrace();
                }
            }
        };
        handler.postDelayed(runnable,1 * 1000);
    }
    public void textViewGone() {
        findViewById(R.id.LinearLayout10).setVisibility(View.GONE);
        findViewById(R.id.LinearLayout11).setVisibility(View.GONE);
        findViewById(R.id.LinearLayout12).setVisibility(View.GONE);
        findViewById(R.id.LinearLayout13).setVisibility(View.GONE);
    }
}

这是清单:

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.App">
    <receiver android:name=".Widget">
        <intent-filter>
            <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
        </intent-filter>
        <Meta-data
            android:name="android.appwidget.provider"
            android:resource="@xml/widget_info" />
    </receiver>
    <activity
        android:name=".MainActivity"
        android:screenorientation="landscape">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

解决方法

不幸的是,您不能通过活动直接设置小部件的内容。相反,您需要定义自己的AppWidgetProvider,检索它的一个实例并调用它的onUpdate函数,然后使用RemoteViews重新创建UI。

您可以找到有关此主题here的指南。话虽这么说,但在Android上使用窗口小部件可能会有些复杂,这可能不适合初学者。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。