Android: невозможно получить кнопку для рисования в правой части в LinearLayout - PullRequest
0 голосов
/ 06 июля 2011

Я пытаюсь создать макет с 4 кнопками, где верхняя часть кнопки будет центрирована.Центральные 2 кнопки будут справа и слева и в одном ряду.Так что это будет выглядеть как круг.Я помещаю центральные 2 кнопки в горизонтальный LinearLayout.Я установил гравитацию первой кнопки слева, второй справа.Кнопка, расположенная по центру вправо, рисуется сразу после кнопки перед ней, а не справа.Я установил ширину макета Linarlayout, чтобы заполнить родительский элемент.Android: не удается получить кнопку для рисования с правой стороны в LinearLayout Почему кнопка не отображается с правой стороны ????

xml code

<ImageButton android:id="@+id/bAbout"       
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/about"
    android:layout_gravity="center" 
/>

<LinearLayout android:id="@+id/mainLayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <ImageButton android:id="@+id/bVedio"       
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/about"   
        android:layout_gravity="left"   
    />

    <ImageButton android:id="@+id/bBlog"        
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/about"
        android:layout_gravity="right"      
    />

</LinearLayout> 

Ответы [ 2 ]

0 голосов
/ 06 июля 2011

Попробуйте это ...

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

<LinearLayout 
    android:orientation="vertical"
    android:gravity="center_vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<LinearLayout
    android:id="@+id/LL1" 
    android:orientation="vertical" 
    android:gravity="center"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
<Button 
    android:text="btn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
    android:id="@+id/LLP" 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
<LinearLayout
    android:id="@+id/LL2" 
    android:gravity="center"
    android:layout_weight="1"
    android:orientation="vertical" 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
<Button 
    android:text="btn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
    android:id="@+id/LL3" 
    android:orientation="vertical" 
    android:layout_weight="1"
    android:gravity="center"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
<Button 
    android:text="btn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
<LinearLayout
    android:id="@+id/LL4"  
    android:gravity="center"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
<Button 
    android:text="btn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
0 голосов
/ 06 июля 2011

Так как вы не хотите размещать свои элементы в «линии», возможно, вам не следует использовать LinearLayout. Попробуйте RelativeLayout и посмотрите на свойства layout_alignParentTop, layout_alignParentBottom, layout_alignParentRight и layout_alignParentLeft. Смотрите здесь .

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...