mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-10-30 22:34:02 +01:00 
			
		
		
		
	Add icon to bottom sheet details
This commit is contained in:
		
							parent
							
								
									6b2596bced
								
							
						
					
					
						commit
						00ad5a7a71
					
				
					 3 changed files with 10 additions and 1 deletions
				
			
		|  | @ -316,6 +316,8 @@ public class NearbyActivity extends NavigationBaseActivity implements LocationUp | |||
|         checkGps(); | ||||
|     } | ||||
| 
 | ||||
| 
 | ||||
| 
 | ||||
|     /** | ||||
|      * This method should be the single point to load/refresh nearby places | ||||
|      * | ||||
|  |  | |||
|  | @ -15,6 +15,7 @@ import android.view.View; | |||
| import android.view.ViewGroup; | ||||
| import android.view.animation.Animation; | ||||
| import android.view.animation.AnimationUtils; | ||||
| import android.widget.ImageView; | ||||
| import android.widget.TextView; | ||||
| 
 | ||||
| import com.google.gson.Gson; | ||||
|  | @ -55,6 +56,7 @@ public class NearbyMapFragment extends android.support.v4.app.Fragment { | |||
|     private TextView description; | ||||
|     private TextView title; | ||||
|     private TextView distance; | ||||
|     private ImageView icon; | ||||
| 
 | ||||
| 
 | ||||
|     private boolean isFabOpen=false; | ||||
|  | @ -154,6 +156,7 @@ public class NearbyMapFragment extends android.support.v4.app.Fragment { | |||
|         description = getActivity().findViewById(R.id.description); | ||||
|         title = getActivity().findViewById(R.id.title); | ||||
|         distance = getActivity().findViewById(R.id.category); | ||||
|         icon = getActivity().findViewById(R.id.icon); | ||||
|     } | ||||
| 
 | ||||
|     private void setListeners() { | ||||
|  | @ -334,7 +337,9 @@ public class NearbyMapFragment extends android.support.v4.app.Fragment { | |||
|     } | ||||
| 
 | ||||
|     private void passInfoToSheet(Place place) { | ||||
|         description.setText(place.getDescription().toString()); | ||||
|         //TODO set correct icon here | ||||
|         icon.setImageResource(place.getDescription().getIcon()); | ||||
|         description.setText(place.getDescription().getText()); | ||||
|         title.setText(place.name.toString()); | ||||
|         distance.setText(place.distance.toString()); | ||||
|     } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 neslihanturan
						neslihanturan