2017-02-20 6 views
-5

Я хочу сделать макет как изображение, но просто использовать относительные и линейные layout.i хочу mak 4 равных частей. Я не хочу просто поставить 4 кнопки других объектов. Просто просто равное пространство.Как я могу поместить 4 одинаковых прямоугольника в один макет?

4 equal parts

+0

почему только отрицательный голос? Помогите пожалуйста –

+1

Возможные дубликат [Align кнопки по горизонтали с равными промежутками в LinearLayout] (http://stackoverflow.com/questions/15749942/align-buttons-horizontally-with-equal -spacing-in-linearlayout) –

+0

см. редактировать пожалуйста @MohammedAtif –

ответ

0

Это мое решение, я заявляю в комментариях, как вы можете видеть это гнездо LinearLayouts

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/activity_main" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:weightSum="100" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    android:orientation="vertical" 
    tools:context="net.whatsgift.mitro.weightlayout.MainActivity"> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="50" 
     android:orientation="horizontal" 
     android:weightSum="100"> 
     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_weight="50" 
      android:backgroundTint="@color/colorAccent"></LinearLayout> 
     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_weight="50" 
      android:backgroundTint="@color/colorPrimary"></LinearLayout> 
    </LinearLayout> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="50" 
     android:orientation="horizontal" 
     android:weightSum="100"> 
     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_weight="50" 
      android:backgroundTint=""></LinearLayout> 
     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_weight="50" 
      android:backgroundTint="@color/colorAccent"></LinearLayout> 
    </LinearLayout> 


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

<LinearLayout 
android:layout_height="0dp" 
android:layout_width="match_parent" 
android:layout_weight="1" 
android:orientation="horizontal" 
android:weightSum="2" 
> 
<LinearLayout 
    android:layout_height="match_parent" 
    android:layout_width="0dp" 
    android:layout_weight="1" 
    android:background="@color/red" 
    /> 

<LinearLayout 
    android:layout_height="match_parent" 
    android:layout_width="0dp" 
    android:layout_weight="1" 
    android:background="@color/black" 
    /> 

<LinearLayout 
    android:layout_height="0dp" 
    android:layout_width="match_parent" 
    android:orientation="horizontal" 
    android:layout_weight="1" 
    android:weightSum="2" 
    > 
    <LinearLayout 
     android:layout_height="match_parent" 
     android:layout_width="0dp" 
     android:layout_weight="1" 
     android:background="@color/green" 
     /> 

    <LinearLayout 
     android:layout_height="match_parent" 
     android:layout_width="0dp" 
     android:layout_weight="1" 
     android:background="@color/yellow" 
     /> 



</LinearLayout> 

попробовать это.

0

Использования ниже Компоновка файла XML так же, как ваш образ.

<?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" 
    android:weightSum="2"> 

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

     <RelativeLayout 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight="1" 
      android:background="#F3FF33"> 

     </RelativeLayout> 

     <RelativeLayout 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight="1" 
      android:background="#FF333F"> 

     </RelativeLayout> 
    </LinearLayout> 

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

     <RelativeLayout 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight="1" 
      android:background="#D5DA87"> 

     </RelativeLayout> 

     <RelativeLayout 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:layout_weight="1" 
      android:background="#1BE114"> 

     </RelativeLayout> 
    </LinearLayout> 
</LinearLayout> 
+0

спасибо, что ваш ответ работает на меня тоже :) –

+0

Если выше код работает для вас, то, пожалуйста, примите или отпустите его. –

 Смежные вопросы

  • Нет связанных вопросов^_^