私は2つの線形レイアウトを集中させることが困難です。最初の線形レイアウトは、国コード・ピッカーを作成し、同じ行のテキストを編集します。 2番目のリニアレイアウトはで、ボタンを最初の線形レイアウトの下に置くととします。しかし、ボタンを最初の線形レイアウトの下に置くと、それはもはや中心に置かれません。xmlファイル内に2つの異なるレイアウトを配置する
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/ghostWhiteColor"
android:orientation="vertical"
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:padding="10dp"
android:gravity="center"
android:id="@+id/linearLayout1">
<com.hbb20.CountryCodePicker
android:id="@+id/ccp"
android:layout_width="86dp"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
app:ccp_showFullName="false"
app:ccp_showNameCode="false"
app:ccp_showPhoneCode="true" />
<com.rengwuxian.materialedittext.MaterialEditText
android:id="@+id/register_password"
android:layout_width="260dp"
android:layout_height="wrap_content"
android:layout_marginRight="8dp"
android:layout_marginTop="-2dp"
android:hint="@string/hint_phone"
android:inputType="phone"
android:padding="10dp"
android:singleLine="true"
app:met_floatingLabel="normal"
app:met_helperText="Enter your phone number."
app:met_helperTextAlwaysShown="true" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout2"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:padding="10dp"
android:gravity="center">
<com.rey.material.widget.Button
android:id="@+id/button_register_accept"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:background="@color/holo_blue_light"
android:padding="10dp"
android:paddingEnd="50dp"
android:text="@string/btn_accept"
android:textColor="@color/ghostWhiteColor" />
</LinearLayout>
</RelativeLayout>
センタリングされていないものの例。 https://puu.sh/yruSe/0721745d0b.png
は、あなたが何をしたいのスクリーンショットを置くことができますか? – diegoveloper
@diegoveloper中心にない例の現在のスレッドを更新しました。 – user8924538
ok私の解決策を以下にチェックしてください – diegoveloper