0

我的父母Linearlayout1包含两个子框架布局:FrameLayout1FrameLayout2.

位于FrameLayout1顶部FrameLayout2但仅覆盖 的一半FrameLayout2

我替换FrameLayout1为 some fragment1,也替换FrameLayout2为 some fragment2

现在,当我单击 时FrameLayout2FrameLayout1应该会变得不可见。但这并没有发生。

我尝试了以下方法:

userDetails.java

 @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
view = inflater.inflate(R.layout.userDetails, container, false);

topLayout = (LinearLayout) getActivity().findViewById(R.id.FrameLayout1);

bottomLayout = (LinearLayout) getActivity().findViewById(R.id.FrameLayout2);


view.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) 
{
   topLayout.setVisibility(View.GONE);
}

});

}

我还发现 onClick 的视图监听器在点击时没有被调用。

更新:

活动主.xml

<?xml version="1.0" encoding="utf-8"?>

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

    <LinearLayout
              android:id="@+id/FrameLayout1"
              android:layout_weight="1"
              android:layout_width="0dp"              
              android:layout_height="match_parent" />

    <LinearLayout
              android:id="@+id/FrameLayout2"
              android:layout_weight="2"
              android:layout_width="0dp"
              android:layout_height="match_parent" />

</FrameLayout>
4

2 回答 2

2

您已将 OnClickListener 设置为整个 View 而不是 bottomLayout。而且我认为您不能将 FrameLayout 转换为 LinearLayout。以下代码在这里可以正常工作。

final FrameLayout topLayout = (FrameLayout) findViewById(R.id.FrameLayout1);
final FrameLayout bottomLayout = (FrameLayout) findViewById(R.id.FrameLayout2);

bottomLayout.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) 
{
   topLayout.setVisibility(View.GONE);
}
});
于 2013-06-18T14:25:41.073 回答
0

我认为你必须添加到你的 FrameLayout2 可点击。尝试添加

android:clickable="true"

然后在您的 FrameLayout2 中的代码 setOnClickListener 中。顺便说一句,我认为您应该将 topLayout 和 bottomLayout 转换为FrameLayout而不是LinearLayout.

请注意,您的框架布局应该是最终的,以便侦听器类可以访问。

希望能帮助到你 :)

于 2013-06-18T14:13:54.423 回答