Относительная проблема расположения в Android - PullRequest
1 голос
/ 02 января 2012

Я пытаюсь нарисовать путь на ImageView, используя схему ниже. Я не мог нарисовать путь в правильном положении. В макете я использую наложенное изображение поверх другого изображения.

Я думаю, что в моем layout.xml есть ошибка:

   <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout 
    android:id="@+id/relative"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads">

    <LinearLayout
    android:id="@+id/linearlayout1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:orientation="horizontal">   

    <ImageButton  android:id="@+id/btngraymode"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/graymode"
    android:layout_marginLeft="4dip"
    android:layout_weight="1"
    android:layout_gravity="bottom"
    android:padding="3dip"
    android:background="@layout/selector">
    </ImageButton>
    </LinearLayout>


    <com.google.ads.AdView 
    android:id="@+id/adView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ads:adUnitId="abcdefgh"
    ads:adSize="BANNER"
    android:layout_below="@+id/linearlayout1"
    ads:loadAdOnCreate="true"/>

    <view   class="com.labels.android"
        android:id="@+id/image"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"         
        android:layout_above="@+id/linearlayout"
        android:layout_below="@+id/adView"
        />   

    <view   class="com.labels.android"
        android:id="@+id/image1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" 
        android:layout_above="@+id/linearlayout"
        android:layout_below="@+id/adView"
        /> 

    <LinearLayout
    android:id="@+id/linearlayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:orientation="horizontal">
    <ImageButton
    android:id="@+id/btnselectbackground"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/photo"
    android:layout_marginLeft="4dip"
    android:layout_weight="1"
    android:layout_gravity="bottom"
    android:padding="3dip"
    android:background="@layout/selector">
    </ImageButton>   
    </LinearLayout>  
    </RelativeLayout>

Есть идеи?

1 Ответ

0 голосов
/ 03 января 2012

Попробуйте это с вашими тегами просмотра:

 <view   class="com.labels.android"
    android:id="@+id/image"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"         
    android:layout_above="@+id/image1"
    android:layout_below="@+id/adView"
    />   

<view   class="com.labels.android"
    android:id="@+id/image1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:layout_above="@+id/linearlayout"
    android:layout_below="@+id/adView"
    /> 

Вы устанавливаете оба вида с идентификаторами изображения и изображения1 соответственно в приведенном выше LinearLayout, что создает проблему. Установите сначала одно, то есть изображение над image1, а затем image1 над linearlayout. Надеюсь, это поможет вам.

...