任务搜索 请求接口,以及数据的显示
This commit is contained in:
BIN
app/src/main/res/drawable/marker_charge_bg.png
Normal file
BIN
app/src/main/res/drawable/marker_charge_bg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.7 KiB |
BIN
app/src/main/res/drawable/marker_other_bg.png
Normal file
BIN
app/src/main/res/drawable/marker_other_bg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
BIN
app/src/main/res/drawable/marker_poi_bg.png
Normal file
BIN
app/src/main/res/drawable/marker_poi_bg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.4 KiB |
BIN
app/src/main/res/drawable/marker_road.png
Normal file
BIN
app/src/main/res/drawable/marker_road.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.6 KiB |
BIN
app/src/main/res/drawable/marker_road_bg.png
Normal file
BIN
app/src/main/res/drawable/marker_road_bg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
31
app/src/main/res/layout/loading.xml
Normal file
31
app/src/main/res/layout/loading.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@android:color/transparent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progressBar1"
|
||||
style="@style/AppTheme.NoActionBar"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:indeterminateTint="#1BA5F1"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/progressBar_tx"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/progressBar1"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="10dp"
|
||||
android:text="加载中..."
|
||||
android:textColor="#f1f1f1"
|
||||
android:singleLine="true"
|
||||
android:ellipsize="marquee"
|
||||
android:focusableInTouchMode="true"
|
||||
android:focusable="true"/>
|
||||
</RelativeLayout>
|
||||
Reference in New Issue
Block a user