<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/current_task_status_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:clickable="true"
android:paddingLeft="16dp"
android:paddingRight="16dp"
>
<TextView
android:id="@+id/bottom_sheet_finish"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:fontFamily="sans-serif"
android:paddingBottom="20dp"
android:paddingTop="20dp"
android:text="ЗАВЕРШИТЬ"
android:textColor="#2a2a2a"
android:textSize="14sp"
android:textStyle="normal"
/>
<TextView
android:id="@+id/bottom_sheet_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:fontFamily="sans-serif"
android:lineSpacingExtra="17sp"
android:textColor="#626262"
android:textSize="13sp"
android:textStyle="normal"
tools:text="22:34:21"
/>
</RelativeLayout>
私はすべてのtextViewsをcenterVectivalにします。 bottom_sheet_finishはより醜いので、すべてのRelativeLayoutを満たすのに十分な高さですが、bottom_sheet_timeは小さいです。アンドロイド5.0,6.0,7.0ではすべてが問題ありませんが、4.1.2 bottom_sheet_timeは左上隅にあり、layout_gravity、layout_centerParentなどのさまざまな組み合わせを試しましたが、まだ右上にあります。ヘルプ、CenterVertical textView in androidのRelativeLayout 4.1.2
あなたはRelativeLayoutの高さはmatch_parentする作るときはどうなりますか? –
@ NongthonbamTonthoi、このビューはwrap_contentにする必要があります –
よろしくお願いしますandroid:layout_gravity = "center" to RelativeLayout –