我的主要布局main.xml只包含两个LinearLayouts:
LinearLayout
主持一个VideoView
和一个Button
,LinearLayout
主持一个EditText
,这个LinearLayout
将能见度值设置为“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
(带有id my_btn)时,显示带有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代码,LinearLayout
的第二个EditText
显示为在第一个LinearLayout
下方附加,这是有道理的。
但是,我需要的是:当Button
(id:my_btn)被按下时,LinearLayout
的第二个EditText
显示在第一个LinearLayout
的顶部,看起来像LinearLayout
的第二个EditText
从屏幕底部升起,第二个LinearLayout
与EditText
只从底部占据屏幕的一部分,这是第一个LinearLayout仍然可见,如下图所示:
那么,当Button
(id:my_btn)被按下时如何在第一个LinearLayout
上显示第二个EditText
和LinearLayout
而不是以编程方式在第一个LinearLayout
下面加上第二个LinearLayout
?
使用带有两个孩子的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>
亚历山德鲁给出的答案非常好。正如他所说,重要的是将这个“访问者”视图添加为最后一个元素。这里有一些代码可以解决这个问题:
...
...
</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) {
FrameLayout
不是更好的方法:
请改用RelativeLayout
。您可以将元素放在任何您喜欢的位置。之后的元素具有比前一个更高的z-index(即它超过前一个)。
例:
<?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>