Android:小部件在列表中不可见

时间:2015-09-22 12:20:35

标签: java android android-studio widget

我正在尝试更新现有的Android 4+应用以提供小部件。我按照developer.android.com上的教程,但无法让它运行。窗口小部件未显示在窗口小部件列表中,因此无法在主屏幕上安装/使用。

这就是我将小部件添加到应用程序所做的:

1。将WidgetProvider和Settings Activity添加到清单文件:

    <!-- Widget -->
    <receiver
        android:name=".Widget.WidgetProvider"
        android:label="Example Widget"
        android:icon="@drawable/some_drawable">
        <intent-filter>
            <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
        </intent-filter>

        <meta-data
            android:name="android.appwidget.provider"
            android:resource="@xml/appwidget_info" />
    </receiver>
    <activity
        android:name=".Widget.WidgetSettingsActivity"
        android:label="@string/Settings" >
        <intent-filter>
            <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
        </intent-filter>
    </activity>

2。添加了WidgetProvider

package com.mycompany.myapp.Widget;

import android.appwidget.AppWidgetProvider;
import android.appwidget.AppWidgetManager;
import android.content.Context;
import android.content.Intent;

public class WidgetProvider extends AppWidgetProvider{
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {

        for (int i = 0; i < appWidgetIds.length; ++i) {
            // Do something
        }
        super.onUpdate(context, appWidgetManager, appWidgetIds);
    }
}

第3。添加了res / xml / appwidget_info.xml

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android">
    android:minWidth="50dp"
    android:minHeight="50dp"
    android:minResizeHeight="50dp"
    android:minResizeWidth="50dp"
    android:updatePeriodMillis="0"
    android:initialLayout="@layout/widget__content"
    android:configure="com.mycompany.myapp.Widget.WidgetSettingsActivity
    android:resizeMode="horizontal|vertical"
    android:widgetCategory="home_screen">
</appwidget-provider>

4。添加了设置活动

// From the developer.android.com Example
package com.mycompany.myapp.Widget;

import android.app.Activity;
import android.appwidget.AppWidgetManager;
import android.content.Context;
import android.content.Intent;

import android.os.Bundle;
import android.view.View;

import com.mycompany.myapp.R;

public class WidgetSettingsActivity extends Activity {
    private int appWidgetId = AppWidgetManager.INVALID_APPWIDGET_ID;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Set the result to CANCELED.  This will cause the widget host to cancel
        // out of the widget placement if they press the back button.
        setResult(RESULT_CANCELED);

        // Set the view layout resource to use.
        setContentView(R.layout.widget__settings);

        // Find the EditText
        //mUsername = (EditText)findViewById(R.id.username);
        //mPassword = (EditText)findViewById(R.id.password);

        // Bind the action for the save button.
        //findViewById(R.id.save_button).setOnClickListener(mOnClickListener);

        // Find the widget id from the intent.
        Intent intent = getIntent();
        Bundle extras = intent.getExtras();
        if (extras != null)
            appWidgetId =     extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID);

        // If they gave us an intent without the widget id, just bail.
        if (appWidgetId == AppWidgetManager.INVALID_APPWIDGET_ID)
            finish();
    }
}
/ res / layout /

中的Und das Layout
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"
    android:layout_height="match_parent"     android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context="com.mycompany.myapp.Widget.WidgetSettingsActivity">

    <TextView android:text="@string/Settings" android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

</RelativeLayout>

5。在/ res / layout

中添加了小部件布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginLeft="@dimen/margin_default"
        android:layout_marginRight="@dimen/margin_default"
        android:layout_marginTop="@dimen/margin_default"
        android:layout_weight="20" >

        <Button
            android:id="@+id/TButton"
            style="@style/BigButton"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_gravity="center_vertical"
            android:layout_marginRight="@dimen/margin_medium"
            android:layout_weight="1"
            android:text="@string/Test" />

        <Button
            android:id="@+id/IButton"
            style="@style/BigButton"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_gravity="center_vertical"
            android:layout_marginLeft="@dimen/margin_medium"
            android:layout_weight="1"
            android:text="@string/New" />
    </LinearLayout>
</LinearLayout>

该应用程序编译并运行没有任何错误。但我无法在任何地方访问/查看/使用小部件。

我发现了有关此主题的其他问题,但他们都有不同的解决方案(例如,缺少意图过滤器,安装在SD卡上而不是内部存储器中等),但这并非如此。

知道我可能做错了吗?

1 个答案:

答案 0 :(得分:1)

知道了!经过另外两个小时的搜索,我发现了错误。感谢另一个question提示:

appwidget_info.xml格式错误:

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android">
    ...
    android:widgetCategory="home_screen">
</appwidget-provider>

第二行末尾的>错误,因为标记在倒数第二行关闭:...="home_screen">

所以正确的xml看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
    android:minWidth="50dp"
    android:minHeight="50dp"
    android:minResizeHeight="50dp"
    android:minResizeWidth="50dp"
    android:updatePeriodMillis="0"
    android:initialLayout="@layout/widget__content"
    android:configure="com.mycompany.myapp.Widget.WidgetSettingsActivity
    android:resizeMode="horizontal|vertical"
    android:widgetCategory="home_screen">
</appwidget-provider>

我想知道为什么Android Studio不会显示任何错误或警告。本来可以节省我很多时间...另外我不知道为什么我犯了与上面问题中链接的用户相同的错误。也许我从一个糟糕的例子中复制了代码?

但是:如果遇到任何问题,请先检查XML: - )