mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-24 19:06:53 +01:00
Pebble: make the text in the dummy weather configuration activity visible.
This commit is contained in:
parent
d9d153c463
commit
26a349210e
@ -220,8 +220,7 @@
|
|||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
<activity android:name=".externalevents.WeatherNotificationConfig"
|
<activity android:name=".externalevents.WeatherNotificationConfig">
|
||||||
android:label="mockup">
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="ru.gelin.android.weather.notification.ACTION_WEATHER_SKIN_PREFERENCES"/>
|
<action android:name="ru.gelin.android.weather.notification.ACTION_WEATHER_SKIN_PREFERENCES"/>
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
@ -1,16 +1,14 @@
|
|||||||
package nodomain.freeyourgadget.gadgetbridge.externalevents;
|
package nodomain.freeyourgadget.gadgetbridge.externalevents;
|
||||||
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.PersistableBundle;
|
|
||||||
import android.widget.TextView;
|
|
||||||
|
|
||||||
import nodomain.freeyourgadget.gadgetbridge.R;
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.activities.GBActivity;
|
import nodomain.freeyourgadget.gadgetbridge.activities.GBActivity;
|
||||||
|
|
||||||
public class WeatherNotificationConfig extends GBActivity {
|
public class WeatherNotificationConfig extends GBActivity {
|
||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState, persistentState);
|
super.onCreate(savedInstanceState);
|
||||||
setContentView(R.layout.activity_weather_notification);
|
setContentView(R.layout.activity_weather_notification);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user