少し低い、のLinearLayoutと3つのボタンで体重を使用して:私はダイアログ内で、このレイアウトを持って、中央のボタンが
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/rView"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_above="@+id/button2"
android:layout_marginBottom="10dp"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentBottom="true"
android:text=""
android:background="@android:color/transparent"
android:clickable="false"
android:enabled="false"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:orientation="horizontal"
android:layout_below="@+id/rView"
android:weightSum="3">
<Button
android:id="@+id/okbutton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/ok"
android:background="@drawable/buttonshape"
android:layout_weight="1"
android:textColor="@color/blanco"/>
<Button
android:id="@+id/markall"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/checkall"
android:background="@drawable/buttonshape"
android:layout_weight="1"
android:textColor="@color/blanco"/>
<Button
android:id="@+id/cancelbutton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/cancel"
android:background="@drawable/buttonshape"
android:layout_weight="1"
android:textColor="@color/blanco"/>
</LinearLayout>
をこれは私がバックグラウンドとして使用しています描画可能です。
あなたが見ることができるようにのLinearLayoutインサイド<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners
android:radius="50dp"
/>
<solid
android:color="@color/botones"
/>
<stroke
android:width="0dp"
android:color="#878787"
/>
は、3つのボタンがあります。それぞれは線形レイアウトで同じ量のスペースを使用する必要がありますが、実際にはそうですが、中央のボタン(markall)は他のものと揃っていないので、5 dpのように少し低くなります。私はなぜこれが起こっているのか、それを解決する方法を知らない。
助けが必要ですか?
ありがとうございます。
私はその作業罰金の外観のスクリーンショットだと思うと、各ボタンの高さ:のhttp:// prntscrを。 com/gnf4vn –
うん、それはうまくいくはずだが、私にとってはうまくいきませんでした。 – Fustigador
体重を使用しているため、_wrap_content_を使用することはできません。 – Piyush