2017-01-21 1 views
0


Я пытаюсь разместить 4 кнопки, чтобы заполнить всю относительную компоновку. Я хочу, чтобы каждая кнопка имела ширину и высоту до центра RelativeLayout (с пространством около 2dp между ними). Я не думаю, что могу объяснить это очень хорошо, поэтому я сделал изображение, и вот код, который я сделал ...
Любые идеи?
Спасибо!

enter image description here Вид прямо сейчас: enter image description hereAndroid: Поместите 4 кнопки на RelativeLayout

<TextView 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="TextView" 
    android:textAlignment="center" 
    android:textSize="30sp" 
    android:layout_marginTop="10dp" 
    android:id="@+id/textView" /> 

<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_below="@+id/textView" 
    android:layout_centerHorizontal="true" 
    android:layout_marginTop="35dp" 
    android:layout_marginBottom="10dp" 
    android:layout_marginLeft="10dp" 
    android:layout_marginRight="10dp" 
    android:id="@+id/relativeLayout" 
    android:weightSum="1"> 

    <Button 
     android:text="Button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/button"/> 

    <Button 
     android:text="Button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/button2" 
     android:layout_alignParentTop="true" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentEnd="true"/> 

    <Button 
     android:text="Button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/button3" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentStart="true" /> 

    <Button 
     android:text="Button" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/button4" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentEnd="true" /> 

</RelativeLayout> 
+1

даже пробовал? что вы сделали до сих пор? Каков внешний вид вашего макета сейчас? Если вы хотите такой макет, я предлагаю Linearlayout. – Roljhon

+0

Я пробовал с layout_weight, но я мог найти любое решение с 4 кнопками ... Позвольте мне попробовать Linear Layout .. –

+0

Это должно быть довольно легко с помощью инструментов, предоставляемых Android Studio. Дайте мне 10 минут. Я отправлю ответ. Если 2 человека не избили меня до удара ... Ха-ха ... Nevermind. – durbnpoisn

ответ

0
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical"> 

    <TextView 
     android:id="@+id/textView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginBottom="10dp" 
     android:layout_marginTop="10dp" 
     android:text="TextView" 
     android:textAlignment="center" 
     android:textSize="30sp" /> 

    <LinearLayout 
     android:id="@+id/relativeLayout" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical"> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="0dp" 
      android:layout_weight="1" 
      android:orientation="horizontal"> 

      <Button 
       android:id="@+id/button" 
       android:layout_width="0dp" 
       android:layout_height="match_parent" 
       android:layout_weight="1" 
       android:padding="5dp" 
       android:text="Button" /> 

      <Button 
       android:id="@+id/button2" 
       android:layout_width="0dp" 
       android:layout_height="match_parent" 
       android:layout_weight="1" 
       android:padding="5dp" 
       android:text="Button" /> 
     </LinearLayout> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="0dp" 
      android:layout_weight="1" 
      android:orientation="horizontal"> 

      <Button 
       android:id="@+id/button3" 
       android:layout_width="0dp" 
       android:layout_height="match_parent" 
       android:layout_weight="1" 
       android:padding="5dp" 
       android:text="Button" /> 

      <Button 
       android:id="@+id/button4" 
       android:layout_width="0dp" 
       android:layout_height="match_parent" 
       android:layout_weight="1" 
       android:padding="5dp" 
       android:text="Button" /> 
     </LinearLayout> 
    </LinearLayout> 
</LinearLayout> 
+0

Я новый, это будет кусок пирога для вас! ! Большое спасибо!!! :) –

+0

Welcome Bro .... –

1

Попробуйте этот код. Я использовал два линейных раскладки вместо одного относительного расположения

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:orientation="vertical" 
android:layout_height="match_parent"> 

<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/textView" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_marginTop="10dp" 
    android:text="TextView" 
    android:textAlignment="center" 
    android:textSize="30sp" /> 

<LinearLayout 
    android:orientation="horizontal" 
    android:id="@+id/relativeLayout" 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1"> 

    <Button 
     android:id="@+id/button" 
     android:layout_width="0dp" 
     android:layout_weight="1" 
     android:layout_height="match_parent" 
     android:text="Button" /> 

    <Button 
     android:id="@+id/button2" 
     android:layout_width="0dp" 
     android:layout_weight="1" 
     android:layout_height="match_parent" 
     android:text="Button" /> 
</LinearLayout> 

<LinearLayout 
    android:orientation="horizontal" 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1" 
    > 

    <Button 
     android:id="@+id/button3" 
     android:layout_width="0dp" 
     android:layout_weight="1" 
     android:layout_height="match_parent" 
     android:text="Button" /> 

    <Button 
     android:id="@+id/button4" 
     android:layout_width="0dp" 
     android:layout_weight="1" 
     android:layout_height="match_parent" 
     android:text="Button" /> 
</LinearLayout> 
</LinearLayout> 
+0

Большое спасибо за ваш ответ, он работает !!!! (Я одобряю другой ответ, чтобы получить немного больше репутации, но спасибо вам большое :) :) –

+0

Не проблема :) Вы можете взломать хотя: D –