xml상에서 이미지 임의로 지정햇을때
ex)
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="61.3dp"
android:layout_height="24.7dp"
android:layout_gravity="center"
>
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/bigwalk_walking_textbox" />
<TextView
android:id="@+id/noon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="00"
android:textColor="#ffffff"
android:textSize="20sp" />
</FrameLayout>
이걸 실행했을때
텍스트의 위치가 가운데 정렬이안되고
밑으로 쏠리더라구요
높이를 임의로 지정해버리니깐 그런 현상이 발생하는거 같은데 어떻게 하면
텍스트를 가운데 정렬 할 수 있을가요