You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
941 B
26 lines
941 B
<?xml version="1.0" encoding="utf-8"?> |
|
<RelativeLayout |
|
android:id="@+id/wear_editduration_layout" |
|
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" |
|
tools:context=".WearEditDurationActivity" |
|
tools:deviceIds="wear_round"> |
|
|
|
<TimePicker |
|
android:id="@+id/editWearDuration" |
|
android:layout_width="fill_parent" |
|
android:layout_height="fill_parent" |
|
android:layout_gravity="center_horizontal" |
|
android:layout_marginBottom="40dp" |
|
android:layout_marginTop="-20dp"/> |
|
|
|
<Button |
|
android:id="@+id/setDuration" |
|
android:layout_width="fill_parent" |
|
android:layout_height="60dp" |
|
android:layout_alignParentBottom="true" |
|
android:onClick="setDuration" |
|
android:text="@string/set"></Button> |
|
</RelativeLayout>
|
|
|