Pek çok site ve sorudan bahsetmiştim, onları denedim ama hala ihtiyacım olan doğru hizalamayı alamıyorum. Doğrusal düzende yatay yönde merkezde bir metin görünümü istiyorum. Eğer imageview üzerinde TextView'un üst üste çalışıyorsanızYatay çizgi düzeninde metin görünümü nasıl ortalanır?
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="@dimen/fifteen_dp"
android:paddingRight="@dimen/fifteen_dp"
android:paddingTop="@dimen/fifteen_dp"
android:paddingBottom="@dimen/fifteen_dp"
android:orientation="horizontal">
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_gravity="left"
android:background="@drawable/menu_icon"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/subscribe"
android:layout_gravity="center_horizontal"
android:textSize="@dimen/header" />