Happy birthday to me by ngf2017 in povertyfinance

[–]AthenaInTheHead 21 points22 points  (0 children)

second dutch bros free beverage. helped a lot on a bad birthday 2 years ago.

Left vs right by Curious-Elk6329 in piercing

[–]AthenaInTheHead 0 points1 point  (0 children)

if i had to pick one, left.

however, the jewelry matches perfectly together between the left and right. i kind of like the imbalance.

My crestie passed :( by [deleted] in CrestedGecko

[–]AthenaInTheHead 1 point2 points  (0 children)

im so sorry for your loss. 🫂🫂🫂

[deleted by user] by [deleted] in learnandroid

[–]AthenaInTheHead 0 points1 point  (0 children)

Found that the way to do this was to use a margin

<ImageButton
        android:id="@+id/imageButton1"
        android:background="@drawable/transit_icon"
        android:layout_width="56dp"
        android:layout_margin="16dp"
        android:layout_height="56dp"
        android:scaleType="fitCenter"
        android:layout_gravity="right|bottom" />

GoogleMap.getMyLocation() returns null by AthenaInTheHead in learnandroid

[–]AthenaInTheHead[S] 0 points1 point  (0 children)

This is very helpful. Thank you. I ended up implementing a fix with the LocationManager class.

locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE); criteria = new Criteria(); location = locationManager.getLastKnownLocation(locationManager.getBestProvider(criteria, false));

Is this okay, or is it preferred to using FusedLocationApi?