<?xml version="1.0" encoding="utf-8"?>
|
<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"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical"
|
tools:context=".MainActivity">
|
<com.demo.navtogether.PlanPathView
|
android:id="@+id/planpath"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_weight="1"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center_horizontal"
|
android:orientation="horizontal">
|
|
<Button
|
android:id="@+id/btn_refresh"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:text="刷新"
|
android:onClick="refresh"/>
|
<Button
|
android:id="@+id/btn_draw_dijkstra"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginLeft="20dp"
|
android:text="迪杰斯特拉畫綫"
|
android:onClick="drawLine"/>
|
<Button
|
android:id="@+id/btn_draw_custom"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginLeft="20dp"
|
android:text="畫綫"
|
android:onClick="drawLineCustom"/>
|
</LinearLayout>
|
</LinearLayout>
|