I'm trying to convert a UTC string date to local time, so it's in a more readable format
I have a textView
that in my activity layout:
<TextView
android:id="@+id/dateTv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/titleTv"
tools:text="Published Date" />
In my activity:
class FullArticleActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
…
Top comments (0)