2017-09-20 74 views
-5

少し低い、の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のように少し低くなります。私はなぜこれが起こっているのか、それを解決する方法を知らない。

助けが必要ですか?

ありがとうございます。

+0

私はその作業罰金の外観のスクリーンショットだと思うと、各ボタンの高さ:のhttp:// prntscrを。 com/gnf4vn –

+0

うん、それはうまくいくはずだが、私にとってはうまくいきませんでした。 – Fustigador

+1

体重を使用しているため、_wrap_content_を使用することはできません。 – Piyush

答えて

1

ボタンの幅を "match_parent"に変更します。

+0

運がいい、ごめんなさい... – Fustigador

+0

OPが 'weight'を使用しているので' match_parent'を使うことはできません – Piyush

+0

wrap_contentに変更して解決しました。ありがとう、あなたは正しい道に私を入れました。 – Fustigador

0

これを試してください。

android:layout_height="match_parent"Buttonに設定します。

そしてandroid:gravity="center"からButtonに設定します。

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentLeft="true" 
    android:layout_alignParentStart="true" 
    android:layout_below="@+id/rView" 
    android:orientation="horizontal" 
    android:weightSum="3"> 

    <Button 
     android:id="@+id/okbutton" 
     android:layout_width="0dp" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     android:background="@drawable/buttonshape" 
     android:gravity="center" 
     android:text="@string/ok" 
     android:textColor="@color/blanco"/> 

    <Button 
     android:id="@+id/markall" 
     android:layout_width="0dp" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     android:background="@drawable/buttonshape" 
     android:gravity="center" 
     android:text="@string/checkall" 
     android:textColor="@color/blanco"/> 

    <Button 
     android:id="@+id/cancelbutton" 
     android:layout_width="0dp" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     android:background="@drawable/buttonshape" 
     android:gravity="center" 
     android:text="@string/cancel" 
     android:textColor="@color/blanco"/> 
</LinearLayout> 
0

アンドロイドを変更するのいずれか試してみてください: "wrap_content" にlayout_height = "match_parent"、 OR "match_parent"

関連する問題