LINT: xml

This commit is contained in:
Milos Kozak 2019-04-08 17:03:18 +02:00
parent 989b444c86
commit 3b1d96ecc9
30 changed files with 65 additions and 91 deletions

View file

@ -38,6 +38,7 @@
<meta-data <meta-data
android:name="com.google.android.gms.car.application" android:name="com.google.android.gms.car.application"
android:resource="@xml/automotive_app_desc" /> android:resource="@xml/automotive_app_desc" />
<activity android:name=".MainActivity"> <activity android:name=".MainActivity">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
@ -175,57 +176,57 @@
<action android:name="com.google.android.gms.wearable.DATA_CHANGED" /> <action android:name="com.google.android.gms.wearable.DATA_CHANGED" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/nightscout_watch_data" /> android:pathPrefix="/nightscout_watch_data"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/nightscout_watch_data_resend" /> android:pathPrefix="/nightscout_watch_data_resend"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/nightscout_watch_cancel_bolus" /> android:pathPrefix="/nightscout_watch_cancel_bolus"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/nightscout_watch_confirmactionstring" /> android:pathPrefix="/nightscout_watch_confirmactionstring"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/nightscout_watch_initiateactionstring" /> android:pathPrefix="/nightscout_watch_initiateactionstring"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/openwearsettings" /> android:pathPrefix="/openwearsettings"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/sendstatustowear" /> android:pathPrefix="/sendstatustowear"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/sendpreferencestowear" /> android:pathPrefix="/sendpreferencestowear"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/nightscout_watch_basal" /> android:pathPrefix="/nightscout_watch_basal"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/nightscout_watch_bolusprogress" /> android:pathPrefix="/nightscout_watch_bolusprogress"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/nightscout_watch_actionconfirmationrequest" /> android:pathPrefix="/nightscout_watch_actionconfirmationrequest"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/nightscout_watch_changeconfirmationrequest" /> android:pathPrefix="/nightscout_watch_changeconfirmationrequest"
android:scheme="wear" />
<data <data
android:scheme="wear"
android:host="*" android:host="*"
android:pathPrefix="/nightscout_watch_cancelnotificationrequest" /> android:pathPrefix="/nightscout_watch_cancelnotificationrequest"
android:scheme="wear" />
</intent-filter> </intent-filter>
</service> </service>
<service <service
@ -257,19 +258,19 @@
<activity <activity
android:name=".activities.SingleFragmentActivity" android:name=".activities.SingleFragmentActivity"
android:theme="@style/AppTheme" /> android:theme="@style/AppTheme" />
<activity android:name=".plugins.general.maintenance.activities.LogSettingActivity"></activity> <activity android:name=".plugins.general.maintenance.activities.LogSettingActivity" />
<activity <activity
android:name=".plugins.pump.insight.activities.InsightPairingActivity" android:name=".plugins.pump.insight.activities.InsightPairingActivity"
android:theme="@style/AppTheme" android:label="@string/insight_pairing"
android:label="@string/insight_pairing" /> android:theme="@style/AppTheme" />
<activity <activity
android:name=".plugins.pump.insight.activities.InsightAlertActivity" android:name=".plugins.pump.insight.activities.InsightAlertActivity"
android:label="@string/pump_alert" android:label="@string/pump_alert"
android:theme="@style/InsightAlertDialog" /> android:theme="@style/InsightAlertDialog" />
<activity <activity
android:name=".plugins.pump.insight.activities.InsightPairingInformationActivity" android:name=".plugins.pump.insight.activities.InsightPairingInformationActivity"
android:theme="@style/AppTheme" android:label="@string/pairing_information"
android:label="@string/pairing_information" /> android:theme="@style/AppTheme" />
</application> </application>
</manifest> </manifest>

View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center" android:gravity="center"

View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent"> android:layout_height="match_parent">

View file

@ -21,7 +21,7 @@
android:id="@+id/logsettings_placeholder" android:id="@+id/logsettings_placeholder"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical"></LinearLayout> android:orientation="vertical" />
</ScrollView> </ScrollView>

View file

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:orientation="vertical"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"

View file

@ -1,5 +1,4 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"

View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:focusableInTouchMode="true" android:focusableInTouchMode="true"

View file

@ -1,5 +1,4 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"

View file

@ -1,5 +1,4 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"

View file

@ -1,5 +1,4 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:gravity="center" android:gravity="center"

View file

@ -1,5 +1,4 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"

View file

@ -1,5 +1,4 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"

View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"

View file

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"

View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"

View file

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"

View file

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"

View file

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto" xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/overview_quickwizard_cardview" android:id="@+id/overview_quickwizard_cardview"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"

View file

@ -5,4 +5,4 @@
android:gravity="center" android:gravity="center"
android:paddingBottom="5dp" android:paddingBottom="5dp"
android:paddingTop="5dp" android:paddingTop="5dp"
android:textColor="#FFFFFF"></TextView> android:textColor="#FFFFFF" />

View file

@ -1,5 +1,4 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center_horizontal" android:gravity="center_horizontal"

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android"> <paths>
<external-files-path name="exports" path="exports/" /> <external-files-path name="exports" path="exports/" />
</paths> </paths>

View file

@ -9,49 +9,49 @@
android:defaultValue="0" android:defaultValue="0"
android:inputType="number" android:inputType="number"
android:key="@string/key_eatingsoon_duration" android:key="@string/key_eatingsoon_duration"
android:title="@string/eatingsoon_duration"></EditTextPreference> android:title="@string/eatingsoon_duration" />
<EditTextPreference <EditTextPreference
android:defaultValue="0" android:defaultValue="0"
android:inputType="numberDecimal" android:inputType="numberDecimal"
android:key="@string/key_eatingsoon_target" android:key="@string/key_eatingsoon_target"
android:title="@string/eatingsoon_target"></EditTextPreference> android:title="@string/eatingsoon_target" />
<EditTextPreference <EditTextPreference
android:defaultValue="0" android:defaultValue="0"
android:inputType="number" android:inputType="number"
android:key="@string/key_activity_duration" android:key="@string/key_activity_duration"
android:title="@string/activity_duration"></EditTextPreference> android:title="@string/activity_duration" />
<EditTextPreference <EditTextPreference
android:defaultValue="0" android:defaultValue="0"
android:inputType="numberDecimal" android:inputType="numberDecimal"
android:key="@string/key_activity_target" android:key="@string/key_activity_target"
android:title="@string/activity_target"></EditTextPreference> android:title="@string/activity_target" />
<EditTextPreference <EditTextPreference
android:defaultValue="0" android:defaultValue="0"
android:inputType="number" android:inputType="number"
android:key="@string/key_hypo_duration" android:key="@string/key_hypo_duration"
android:title="@string/hypo_duration"></EditTextPreference> android:title="@string/hypo_duration" />
<EditTextPreference <EditTextPreference
android:defaultValue="0" android:defaultValue="0"
android:inputType="numberDecimal" android:inputType="numberDecimal"
android:key="@string/key_hypo_target" android:key="@string/key_hypo_target"
android:title="@string/hypo_target"></EditTextPreference> android:title="@string/hypo_target" />
</PreferenceScreen> </PreferenceScreen>
<PreferenceScreen android:title="@string/fillbolus_title"> <PreferenceScreen android:title="@string/fillbolus_title">
<EditTextPreference <EditTextPreference
android:defaultValue="0.3" android:defaultValue="0.3"
android:inputType="numberDecimal" android:inputType="numberDecimal"
android:key="fill_button1" android:key="fill_button1"
android:title="@string/button1"></EditTextPreference> android:title="@string/button1" />
<EditTextPreference <EditTextPreference
android:defaultValue="0" android:defaultValue="0"
android:inputType="numberDecimal" android:inputType="numberDecimal"
android:key="fill_button2" android:key="fill_button2"
android:title="@string/button2"></EditTextPreference> android:title="@string/button2" />
<EditTextPreference <EditTextPreference
android:defaultValue="0" android:defaultValue="0"
android:inputType="numberDecimal" android:inputType="numberDecimal"
android:key="fill_button3" android:key="fill_button3"
android:title="@string/button3"></EditTextPreference> android:title="@string/button3" />
</PreferenceScreen> </PreferenceScreen>
<PreferenceScreen <PreferenceScreen
android:summary="@string/prefs_range_summary" android:summary="@string/prefs_range_summary"
@ -60,12 +60,12 @@
android:defaultValue="0" android:defaultValue="0"
android:inputType="numberDecimal" android:inputType="numberDecimal"
android:key="low_mark" android:key="low_mark"
android:title="@string/low_mark"></EditTextPreference> android:title="@string/low_mark" />
<EditTextPreference <EditTextPreference
android:defaultValue="0" android:defaultValue="0"
android:inputType="numberDecimal" android:inputType="numberDecimal"
android:key="high_mark" android:key="high_mark"
android:title="@string/high_mark"></EditTextPreference> android:title="@string/high_mark" />
</PreferenceScreen> </PreferenceScreen>
<SwitchPreference <SwitchPreference
android:defaultValue="false" android:defaultValue="false"
@ -82,7 +82,7 @@
android:dependency="@string/key_enable_missed_bg_readings_alert" android:dependency="@string/key_enable_missed_bg_readings_alert"
android:inputType="number" android:inputType="number"
android:key="@string/key_missed_bg_readings_threshold" android:key="@string/key_missed_bg_readings_threshold"
android:title="@string/nsalarm_staledatavalue_label"></EditTextPreference> android:title="@string/nsalarm_staledatavalue_label" />
<SwitchPreference <SwitchPreference
android:defaultValue="true" android:defaultValue="true"
android:key="@string/key_enable_pump_unreachable_alert" android:key="@string/key_enable_pump_unreachable_alert"

View file

@ -1,21 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) --> <!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:cc="http://creativecommons.org/ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="210mm" height="297mm"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" viewBox="0 0 744.09448819 1052.3622047" id="svg3585" version="1.1" inkscape:version="0.91 r13725"
xmlns:svg="http://www.w3.org/2000/svg" sodipodi:docname="drawing.svg">
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
viewBox="0 0 744.09448819 1052.3622047"
id="svg3585"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="drawing.svg">
<defs <defs
id="defs3587"> id="defs3587">
<clipPath <clipPath

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
viewBox="0 0 1024 1024" style="enable-background:new 0 0 1024 1024;" xml:space="preserve"> viewBox="0 0 1024 1024" style="enable-background:new 0 0 1024 1024;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#FFFFFF;stroke:#008D36;stroke-width:18;stroke-miterlimit:10;} .st0{fill:#FFFFFF;stroke:#008D36;stroke-width:18;stroke-miterlimit:10;}

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
viewBox="0 0 1024 1024" style="enable-background:new 0 0 1024 1024;" xml:space="preserve"> viewBox="0 0 1024 1024" style="enable-background:new 0 0 1024 1024;" xml:space="preserve">
<style type="text/css"> <style type="text/css">
.st0{fill:#009FE3;} .st0{fill:#009FE3;}

Before

Width:  |  Height:  |  Size: 204 KiB

After

Width:  |  Height:  |  Size: 204 KiB

View file

@ -220,7 +220,7 @@
android:layout_width="0px" android:layout_width="0px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:orientation="horizontal"></LinearLayout> android:orientation="horizontal" />
<LinearLayout <LinearLayout
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -260,7 +260,7 @@
android:layout_width="0px" android:layout_width="0px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:orientation="horizontal"></LinearLayout> android:orientation="horizontal" />
<TextView <TextView
android:id="@+id/watch_time" android:id="@+id/watch_time"
@ -310,7 +310,7 @@
android:layout_width="0px" android:layout_width="0px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:orientation="horizontal"></LinearLayout> android:orientation="horizontal" />
<LinearLayout <LinearLayout
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -350,7 +350,7 @@
android:layout_width="0px" android:layout_width="0px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:orientation="horizontal"></LinearLayout> android:orientation="horizontal" />
</LinearLayout> </LinearLayout>

View file

@ -322,7 +322,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="0px" android:layout_height="0px"
android:layout_weight="0.64" android:layout_weight="0.64"
android:orientation="horizontal"></LinearLayout> android:orientation="horizontal" />
</LinearLayout> </LinearLayout>

View file

@ -228,7 +228,7 @@
android:layout_width="0px" android:layout_width="0px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:orientation="horizontal"></LinearLayout> android:orientation="horizontal" />
<LinearLayout <LinearLayout
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -268,7 +268,7 @@
android:layout_width="0px" android:layout_width="0px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:orientation="horizontal"></LinearLayout> android:orientation="horizontal" />
<TextView <TextView
android:id="@+id/watch_time" android:id="@+id/watch_time"
@ -318,7 +318,7 @@
android:layout_width="0px" android:layout_width="0px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:orientation="horizontal"></LinearLayout> android:orientation="horizontal" />
<LinearLayout <LinearLayout
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -358,7 +358,7 @@
android:layout_width="0px" android:layout_width="0px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:orientation="horizontal"></LinearLayout> android:orientation="horizontal" />
</LinearLayout> </LinearLayout>

View file

@ -322,7 +322,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="0px" android:layout_height="0px"
android:layout_weight="0.64" android:layout_weight="0.64"
android:orientation="horizontal"></LinearLayout> android:orientation="horizontal" />
</LinearLayout> </LinearLayout>

View file

@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<wallpaper xmlns:android="http://schemas.android.com/apk/res/android" /> <wallpaper />