仿美團等APP城市選擇

這裏寫圖片描述

Install

Gradle:

compile 'com.zaaach:citypicker:1.1'

or Maven:

<dependency>
  <groupId>com.zaaach</groupId>
  <artifactId>citypicker</artifactId>
  <version>1.1</version>
  <type>pom</type>
</dependency>

or 下載library手動導入.

Usage

CityPicker本身已經引入了高德地圖定位sdk.
step1:

在你項目的manifest.xml中添加開發平臺申請的key

<meta-data android:name="com.amap.api.v2.apikey"
           android:value="your key"/>

還需要添加CityPickerActivity

<activity android:name="com.zaaach.citypicker.CityPickerActivity" android:theme="@style/CityPicker.NoActionBar" android:screenOrientation="portrait" android:windowSoftInputMode="stateHidden|adjustPan"/>

Step2

private static final int REQUEST_CODE_PICK_CITY = 0; //啓動 startActivityForResult(new Intent(MainActivity.this, CityPickerActivity.class), REQUEST_CODE_PICK_CITY); //重寫onActivityResult方法 @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (requestCode == REQUEST_CODE_PICK_CITY && resultCode == RESULT_OK){ if (data != null){ String city = data.getStringExtra(CityPickerActivity.KEY_PICKED_CITY); resultTV.setText("當前選擇:" + city); } } }

Step3:
enjoy it.
Proguard

注意混淆

//定位
-keep class com.amap.api.location.**{*;}
-keep class com.amap.api.fence.**{*;}
-keep class com.autonavi.aps.amapapi.model.**{*;}

demo下載http://download.csdn.net/download/qq_35549248/9930706

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章