Как показать один макет поверх другого программно в моем случае? - PullRequest
83 голосов
/ 14 июля 2011

Мой основной макет main.xml просто содержит два LinearLayouts:

  • 1-й LinearLayout хост VideoView и Button,
  • 2-й LinearLayout содержит EditText, и этот LinearLayout установил для visibility значение " GONE " (android:visibility="gone")

как показано ниже:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
    android:layout_height="fill_parent" 
    android:layout_width="fill_parent"
        android:orientation="vertical"
>
    <LinearLayout 
        android:id="@+id/first_ll"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"

    >
        <VideoView 
            android:id="@+id/my_video"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="9"
        />

        <Button
            android:id="@+id/my_btn"
            android:layout_width="30dip" 
            android:layout_height="30dip"
            android:layout_gravity="right|bottom"
                android:layout_weight="1"
        />

    </LinearLayout>

    <LinearLayout 
        android:id="@+id/second_ll"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingTop="2dip"

        android:visibility="gone"
    >
        <EditText 
            android:id="@+id/edit_text_field"
            android:layout_height="40dip"
            android:layout_width="fill_parent"
            android:layout_weight="5"
            android:layout_gravity="center_vertical"
        />

    </LinearLayout>
</LinearLayout>

Я успешно реализовал функцию, которая при нажатии Button (с идентификатором my_btn) отображает поле 2nd LinearLayout с EditText со следующим кодом Java:

LinearLayout secondLL = (LinearLayout) findViewById(R.id.second_ll);

Button myBtn = (Button) findViewById(R.id.my_btn);
myBtn.setOnClickListener(new OnClickListener(){
    @Override
    public void onClick(View v){
        int visibility = secondLL.getVisibility();

        if(visibility==View.GONE)
            secondLL.setVisibility(View.VISIBLE);

    }
}); 

При использовании приведенного выше Java-кода 2nd LinearLayout с EditText отображается как с добавлением ниже 1st LinearLayout, что имеет смысл.

НО , что мне нужно: когда нажимается Button (id: my_btn), 2nd LinearLayout с EditText отображается сверху 1-й LinearLayout, который выглядит как 2-й LinearLayout с EditText, поднимающимся из нижней части экрана, и 2-й LinearLayout с EditText занимают только часть экрана снизу, это 1-й LinearLayout, все еще видимый, как показано на рисунке ниже:

enter image description here

Итак, когда Button (id: my_btn) нажата, как показать 2nd LinearLayout с EditText поверх * 1st LinearLayout вместо добавления 2-й LinearLayout ниже 1-й LinearLayout программно?

Ответы [ 3 ]

183 голосов
/ 14 июля 2011

Используйте FrameLayout с двумя детьми. Двое детей будут перекрываться. На самом деле это рекомендуется в одном из руководств по Android, это не хак ...

Вот пример, где TextView отображается поверх ImageView:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

  <ImageView  
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 

    android:scaleType="center"
    android:src="@drawable/golden_gate" />

  <TextView
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_marginBottom="20dip"
    android:layout_gravity="center_horizontal|bottom"

    android:padding="12dip"

    android:background="#AA000000"
    android:textColor="#ffffffff"

    android:text="Golden Gate" />

</FrameLayout>

Here is the result

4 голосов
/ 05 марта 2018

FrameLayout не лучший способ сделать это:

Вместо этого используйте RelativeLayout. Вы можете расположить элементы где угодно. Элемент, который следует после, имеет более высокий z-индекс, чем предыдущий (то есть он превосходит предыдущий).

Пример:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent" android:layout_height="match_parent">
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/colorPrimary"
        app:srcCompat="@drawable/ic_information"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="This is a text."
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true"
        android:layout_margin="8dp"
        android:padding="5dp"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:background="#A000"
        android:textColor="@android:color/white"/>
</RelativeLayout>

enter image description here

4 голосов
/ 15 апреля 2015

Ответ, данный Александру, работает довольно хорошо. По его словам, важно, чтобы это «аксессорное» представление было добавлено как последний элемент. Вот код, который помог мне:

        ...

        ...

            </LinearLayout>

        </LinearLayout>

    </FrameLayout>

</LinearLayout>

<!-- place a FrameLayout (match_parent) as the last child -->
<FrameLayout
    android:id="@+id/icon_frame_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
</FrameLayout>

</TabHost>

на Java:

final MaterialDialog materialDialog = (MaterialDialog) dialogInterface;

FrameLayout frameLayout = (FrameLayout) materialDialog
        .findViewById(R.id.icon_frame_container);

frameLayout.setOnTouchListener(
        new OnSwipeTouchListener(ShowCardActivity.this) {
...