Как установить `ImageView` между 2 различными макетами - PullRequest
0 голосов
/ 10 мая 2018

enter image description here

enter image description here Прежде всего ; Я не могу сказать свою проблему. Потому что моей английской степени недостаточно, чтобы рассказать это. Поэтому проверьте мои изображения, чтобы понять меня. Кстати, извините за это.

Я хочу установить ImageView между двумя разными макетами. Вы можете видеть, что в первом нет никакого ImageView. Второй - красная коробка (ImageView). Как я могу написать это в моем макете?

Вот мой код компоновки.

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



    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_marginTop="15dp"
        android:paddingLeft="20dp"

        >
        <TextView
            android:textStyle="bold"
            android:textColor="#FFFFFF"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Gönderi:"
            android:layout_marginLeft="60dp"

            />
        <TextView
            android:textStyle="bold"
            android:textColor="#FFFFFF"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Takip edilen"
            android:layout_marginLeft="20dp"
            />
        <TextView
            android:textStyle="bold"
            android:textColor="#FFFFFF"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Takipçi"
            android:layout_marginLeft="20dp"
            />



    </LinearLayout>


    <LinearLayout
        android:layout_marginTop="8dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="75dp"
        android:paddingLeft="25dp"
        >
        <TextView
            android:textStyle="bold"
            android:textColor="#FFFFFF"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="0"/>
        <TextView
            android:textStyle="bold"
            android:textColor="#FFFFFF"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="0"
            android:layout_marginLeft="87dp"/>

        <TextView
            android:textColor="#FFFFFF"
            android:textStyle="bold"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="0"
            android:layout_marginLeft="70dp" />





    </LinearLayout>









</LinearLayout>





    <LinearLayout
        android:layout_width="match_parent"
        android:orientation="horizontal"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="60dp">




        <ImageView
            android:layout_marginLeft="50dp"
            android:id="@+id/telefon_arama_ImageView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
android:background="@drawable/cla"
            />

        <TextView
            android:id="@+id/telefon_numarasi"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="5"
            android:text="numaram"
            android:layout_marginLeft="20dp"
            android:textStyle="bold"/>
    </LinearLayout>

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="37dp"
    android:orientation="horizontal"
    android:background="@drawable/radyan"
    >

    <ImageView
        android:id="@+id/btn_group"
        style="@style/Widget.AppCompat.Button.Borderless"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@drawable/kedi"
        />

    <ImageView
        android:id="@+id/btn_sing"
        style="@style/Widget.AppCompat.Button.Borderless"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bulok"
        />

    <Button
        android:id="@+id/profil_btn_duzenle"
        style="@style/Widget.AppCompat.Button.Borderless"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:gravity="center"
        android:text="Düzenle"
        android:textAllCaps="false"
        android:textSize="11sp" />


    <Button
        android:id="@+id/profil_cikis"
        style="@style/Widget.AppCompat.Button.Borderless"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:gravity="center"
        android:text="Çıkış"

        android:textAllCaps="false"
        android:textSize="13sp" />

</LinearLayout>


<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">


        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Hakkımda :"
            android:textStyle="bold"
            android:textSize="11dp"/>

        <TextView
            android:id="@+id/Hakkında_bakıs_TextView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="14dp"
            android:text="bafbafgfdafadfad"
            android:textStyle="italic|bold"
            />


    </LinearLayout>
</ScrollView>

Ответы [ 2 ]

0 голосов
/ 10 мая 2018

Для этого вы должны использовать RelativeLayout вместо LinearLayout.LinearLayout сначала использует старшего потомка вдоль X (горизонтальная ориентация) или Y (вертикальная ориентация).RelativeLayout размещает дочерние элементы вдоль оси Z (т.е. размещает дочерние элементы друг над другом).Так как вам нужно наложить изображение, вам нужно использовать RelativeLayout.Самый простой способ - поместить изображение в код.Быстрый поиск в Google должен дать вам несколько примеров.Чтобы дать вам представление, вам нужно заменить корневой LinerLayout на RelativeLayout.

// Then get reference to this in code
RelativeLayout rl = (RelativeLayout) findViewById(R.id.my_relative_layout);

// Then you can place your image wherever you want
// You will have to provide the dp values of the coordinates
ImageView iv = new ImageView(this);
iv.setBackgroundColor(Color.RED);
params = new RelativeLayout.LayoutParams(30, 40);
params.leftMargin = 50;
params.topMargin = 60;
rl.addView(iv, params);

В следующем ответе stackoverflow есть более подробная информация об этом: Установка абсолютной позиции представления

0 голосов
/ 10 мая 2018

Как вы показали на своем скриншоте, вы хотите перекрыть вид изображения, добавив другой вид изображения, что можно сделать с помощью Relative Layout.

Я изменил ваш корневой макет на «RelativeLayout». проверь xml поймешь что я сделал, это довольно просто. Если у вас возникнут проблемы, дайте мне знать, я напишу подробное объяснение.

Вы можете узнать больше о макетах дизайна пользовательского интерфейса Android здесь https://www.youtube.com/watch?v=OQ5ao6PGCAs

<?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:orientation="vertical">

    <LinearLayout
        android:id="@+id/linearlayout_banner"
        android:layout_width="match_parent"
        android:layout_height="160dp"
        android:background="@drawable/porfoy_resmi777"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="15dp"
            android:orientation="horizontal"
            android:paddingLeft="20dp">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="60dp"
                android:text="Gönderi:"
                android:textColor="#FFFFFF"
                android:textStyle="bold" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20dp"
                android:text="Takip edilen"
                android:textColor="#FFFFFF"
                android:textStyle="bold" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20dp"
                android:text="Takipçi"
                android:textColor="#FFFFFF"
                android:textStyle="bold" />


        </LinearLayout>


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="75dp"
            android:layout_marginTop="8dp"
            android:paddingLeft="25dp">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="0"
                android:textColor="#FFFFFF"
                android:textStyle="bold" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="87dp"
                android:text="0"
                android:textColor="#FFFFFF"
                android:textStyle="bold" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="70dp"
                android:text="0"
                android:textColor="#FFFFFF"
                android:textStyle="bold" />


        </LinearLayout>


    </LinearLayout>


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/linearlayout_banner"
        android:layout_marginLeft="16dp"
        android:layout_marginTop="-40dp"
        android:orientation="horizontal">

        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

            <ImageView
                android:id="@+id/telefon_arama_ImageView"
                android:layout_width="120dp"
                android:layout_height="120dp"
                android:layout_weight="1"
                android:background="@drawable/cla" />
        </RelativeLayout>

        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="50dp">

            <TextView
                android:id="@+id/telefon_numarasi"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="20dp"
                android:layout_weight="5"
                android:text="numaram"
                android:textStyle="bold" />
        </RelativeLayout>
    </LinearLayout>

</RelativeLayout>

enter image description here

...