单击Actionbar - Android中的项目时显示布局

时间:2015-09-10 12:03:40

标签: android android-layout android-fragments

我的activity.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"       
    tools:context="com.myactionbar.actionbar.MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <!-- Enable this layout on clicking the icon in actionbar -->
    <RelativeLayout
        android:id="@+id/rl_ListView1"
        android:layout_width="100dp"
        android:layout_height="match_parent"
        android:layout_weight="0.5" 
        android:background="@color/black"
        android:visibility="invisible">               
    </RelativeLayout>

</RelativeLayout> 

Main.xml - 它在操作栏上显示一个图标

<item
        android:id="@+id/show_info"
        android:orderInCategory="100"
        android:title="@string/search"
        app:showAsAction="always"
        android:icon="@drawable/ic_icon"
        /> 

点击操作栏中的ic_icon图标,我需要显示隐藏的Relativelayout id=rl_ListView1

我不知道如何在单击操作栏中的项目时找到带有id的布局。

请帮我这样做。

1 个答案:

答案 0 :(得分:2)

您需要在我们的活动中覆盖onOptionsItemSelected方法

public boolean onOptionsItemSelected(MenuItem item) {
    int id = item.getItemId();

    if (id == android.R.id.home) {

        //Code for showing layout
    }

    return super.onOptionsItemSelected(item);
}

====== 更新了

if (id == R.id.show_info) {

if(r1.getVisibility()== View.VISIBLE)
{ 
               //Hide your layout
}
else
{
  //Show your layout
}