display a title bar at the widget config activity
This commit is contained in:
parent
fb5ccc50dc
commit
7389ec8dbc
|
@ -30,7 +30,8 @@
|
|||
android:resource="@xml/widget_info"/>
|
||||
</receiver>
|
||||
|
||||
<activity android:name=".MyWidgetConfigure">
|
||||
<activity
|
||||
android:name=".MyWidgetConfigure">
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
|
||||
</intent-filter>
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
package calculator.simplemobiletools.com.simple_calculator;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.appwidget.AppWidgetManager;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.support.v7.app.AppCompatActivity;
|
||||
|
||||
import butterknife.ButterKnife;
|
||||
import butterknife.OnClick;
|
||||
|
||||
public class MyWidgetConfigure extends Activity {
|
||||
public class MyWidgetConfigure extends AppCompatActivity {
|
||||
private int widgetId;
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue