4

我有一个带有显示/隐藏菜单按钮的顶栏。我想在同一布局中定义顶部栏、按钮和菜单。

我尝试了顶部栏高度的布局,但菜单被剪裁并且不可见。是否有可能拥有比其父级更大的视图。否则,这样做的标准方法是什么?

在此处输入图像描述

4

1 回答 1

11

对于您的问题:是的,这是可能的。简单的例子:

<?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"
          >

<ImageView
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="#f0f"
      android:layout_marginLeft="-50dp"
      android:layout_marginRight="-50dp"
      />
 </LinearLayout>

ImageViewWidth == LinearLayoutWidth + 100dp

希望它的帮助。

于 2013-04-12T09:07:55.357 回答