Mój główny układ main.xml zawiera po prostu dwa układy liniowe:
- 1.
LinearLayout
gospodarze aVideoView
i aButton
, - Drugi
LinearLayout
host anEditText
,LinearLayout
który ustawił wartość widoczności na „ GONE ” (android:visibility="gone"
)
jak poniżej:
<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>
I z powodzeniem wdrożony cechę, że kiedy Button
(z id my_btn) jest wciśnięty, 2-ta LinearLayout
z EditText
pola jest pokazany, z następującego kodu 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);
}
});
Z powyższego Java kodzie 2-ci LinearLayout
z EditText
pokazano jak dołączanie poniżej w 1 LinearLayout
, które ma sens.
ALE , Co potrzebne jest: kiedy Button
(id: my_btn) jest wciśnięty, 2-ty LinearLayout
ze EditText
jest pokazany na górze w 1 LinearLayout
, która wygląda jak 2 LinearLayout
z EditText
rośnie od dołu ekranu, a 2 LinearLayout
z EditText
tylko zajmują część ekran od dołu, to pierwszy układ liniowy nadal widoczny, jak pokazano na poniższym obrazku:
Tak więc po Button
naciśnięciu (id: my_btn), jak wyświetlić 2 - gieLinearLayout
z EditText
nad 1 - szymLinearLayout
zamiast programowo dołączać 2-gie LinearLayout
poniżej 1-szej LinearLayout
?
TextView
na wierzchu? czy to dlatego, że zajmuje drugie miejsce na liście?FrameLayout
nie jest lepszym sposobem na zrobienie tego:Użyj
RelativeLayout
zamiast tego. Możesz umieścić elementy w dowolnym miejscu. Następny element ma wyższy indeks z niż poprzedni (tj. Wyprzedza poprzedni).Przykład:
<?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>
źródło
Odpowiedź udzielona przez Alexandru działa całkiem nieźle. Jak powiedział, ważne jest, aby ten widok „akcesora” został dodany jako ostatni element. Oto kod, który załatwił mi sprawę:
... ... </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>
w Javie:
final MaterialDialog materialDialog = (MaterialDialog) dialogInterface; FrameLayout frameLayout = (FrameLayout) materialDialog .findViewById(R.id.icon_frame_container); frameLayout.setOnTouchListener( new OnSwipeTouchListener(ShowCardActivity.this) {
źródło