-
Notifications
You must be signed in to change notification settings - Fork 558
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1159 from ne0fhyk/fix_issue_1123
Fix issue 1123
- Loading branch information
Showing
34 changed files
with
580 additions
and
344 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,47 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:custom="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="@color/opaque_white" | ||
android:orientation="vertical" > | ||
<RelativeLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
style="@style/missionItemDetailLayout"> | ||
|
||
<org.droidplanner.android.widgets.spinners.SpinnerSelfSelect | ||
android:id="@+id/spinnerWaypointType" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="5dp" | ||
android:entries="@array/ExampleWaypointType" /> | ||
android:layout_alignParentTop="true" | ||
android:entries="@array/ExampleWaypointType"/> | ||
|
||
<ScrollView | ||
android:id="@+id/scrollView1" | ||
<TextView | ||
android:id="@+id/WaypointType" | ||
style="@style/missionHeaderTitle" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" > | ||
android:layout_height="64dp" | ||
android:layout_alignParentTop="true" | ||
android:layout_centerVertical="true" | ||
android:gravity="center_vertical" | ||
android:paddingLeft="25dp" | ||
android:paddingRight="25dp" | ||
android:background="@drawable/wp_title_rectangle" | ||
android:text="Select Waypoint Type" | ||
android:textAllCaps="true"/> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical" > | ||
|
||
<org.droidplanner.android.widgets.SeekBarWithText.SeekBarWithText | ||
android:id="@+id/altitudeView" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="2dp" | ||
custom:inc="1" | ||
custom:max="200" | ||
custom:min="0" | ||
custom:title="@string/waypoint_altitude" | ||
custom:unit="m" > | ||
</org.droidplanner.android.widgets.SeekBarWithText.SeekBarWithText> | ||
<ImageView | ||
android:id="@+id/menuHint" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentEnd="true" | ||
android:layout_alignParentRight="true" | ||
android:layout_alignBottom="@id/WaypointType" | ||
android:src="@drawable/ic_menu_hint" | ||
android:layout_margin="10dp" | ||
/> | ||
|
||
<TextView | ||
android:id="@+id/textView1" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:text="@string/waypointInfo_Generic" /> | ||
</LinearLayout> | ||
</ScrollView> | ||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_below="@+id/WaypointType" | ||
style="@style/ModeDetailText" | ||
android:background="@drawable/mode_desc_rectangle" | ||
android:text="Click on the spinner to select a type for the selected waypoints."/> | ||
|
||
</LinearLayout> | ||
</RelativeLayout> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<menu xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<item | ||
android:id="@+id/menu_action_multi_edit" | ||
android:title="@string/menu_action_multi_edit" | ||
android:showAsAction="ifRoom" | ||
android:icon="@drawable/ic_action_copy"/> | ||
|
||
<item | ||
android:id="@+id/menu_action_reverse" | ||
android:title="@string/menu_action_reverse" | ||
android:icon="@drawable/ic_action_playback_schuffle" | ||
android:showAsAction="ifRoom"/> | ||
|
||
<item | ||
android:id="@+id/menu_action_delete" | ||
android:title="@string/menu_action_delete" | ||
android:icon="@drawable/ic_action_trash" | ||
android:showAsAction="ifRoom"/> | ||
|
||
</menu> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.