Chcę utworzyć układ wierszy listy. Ten układ ma widok obrazu po lewej stronie, widok tekstu po prawej stronie widoku obrazu i widok obrazu po prawej stronie. Chcę, żeby wszystkie były wyśrodkowane w pionie.
<RelativeLayout
android:layout_width="fill_parent" android:layout_height="100dp"
android:gravity="center_vertical"
>
<ImageView
android:id="@+id/icon"
android:layout_width="50dp" android:layout_height="50dp"
android:layout_gravity="center_vertical" />
<TextView
android:id="@+id/func_text" android:layout_toRightOf="@id/icon"
android:layout_width="wrap_content" android:layout_height="100dp"
android:layout_gravity="center_vertical" />
<ImageView
android:layout_width="50dp" android:layout_height="50dp"
android:layout_alignParentRight="true"
android:layout_gravity="center_vertical"
android:src="@drawable/arrow" />
</RelativeLayout>
Próbowałem również dodać android:layout_centerVertical="true"
do widoku tekstowego, ale wynikiem jest wyrównanie widoku tekstu do dołu z dwoma widokami obrazu. Próbowałem tego w emulatorze Androida 4.2. Czy ktoś mógłby mi w tym pomóc?
android
center
android-relativelayout
user2368561
źródło
źródło
Jeśli wysokość / szerokość widoku = wrap_content
posługiwać się:
android:layout_centerHorizontal="true" android:layout_centerVertical="true"
Jeśli wysokość / szerokość widoku = match_parent
posługiwać się:
android:gravity="center_vertical|center_horizontal"
źródło
Spróbuj wyrównać wierzch i spód widoku tekstu do jednego z ikoną, to sprawi, widok tekstowy dzielenie tej samej wysokości co je, a następnie ustawić
gravity
sięcenter_vertical
, aby tekst wewnątrz tekstu centrum widzenia w pionie.<TextView android:id="@+id/func_text" android:layout_toRightOf="@id/icon" android:layout_alignTop="@id/icon" android:layout_alignBottom="@id/icon" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_vertical" />
źródło
Dla mnie musiałem usunąć
<item name="android:gravity">center_vertical</item>
z RelativeLayout , więc konfiguracja dzieci działałaby:
<item name="android:layout_centerVertical">true</item>
źródło
To działa dla mnie.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/rell_main_bg" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#096d74" > <ImageView android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_centerVertical="true" android:layout_centerHorizontal="true" android:src="@drawable/img_logo_large" android:contentDescription="@null" /> </RelativeLayout>
źródło
Może to dlatego, że widok tekstu jest zbyt wysoki. Zmień android: layout_height widoku tekstu na wrap_content lub użyj
android:gravity="center_vertical"
źródło
Dodając oba
android:layout_centerInParent
iandroid:layout_centerVertical
pracuj dla mnie, aby wyśrodkowaćImageView
zarówno w pionie, jak iw poziomie:<ImageView .. android:layout_centerInParent="true" android:layout_centerVertical="true" />
źródło
<RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentStart="true" android:layout_centerInParent="true" android:layout_gravity="center_vertical" android:layout_marginTop="@dimen/main_spacing_extra_big" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:fontFamily="@font/noto_kufi_regular" android:text="@string/renew_license_municipality" android:textColor="@color/sixth_text" android:textSize="@dimen/main_text" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:fontFamily="@font/noto_kufi_regular" android:text="@{RenewLicenseBasicInfoFragmentVM.tvMunicipality}" android:textColor="@color/sixth_text" android:textSize="@dimen/main_text" /> </LinearLayout> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentEnd="true" android:layout_centerInParent="true" android:layout_gravity="center_vertical" android:layout_marginTop="@dimen/main_spacing_extra_big" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="end" android:fontFamily="@font/noto_kufi_regular" android:text="@string/renew_license_license_number" android:textColor="@color/sixth_text" android:textSize="@dimen/main_text" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="end" android:fontFamily="@font/noto_kufi_regular" android:text="@{RenewLicenseBasicInfoFragmentVM.tvLicenseNum}" android:textColor="@color/sixth_text" android:textSize="@dimen/main_text" /> </LinearLayout>`enter code here` </RelativeLayout>
źródło