使linearLayout从屏幕上消失?

时间:2013-01-15 12:13:25

标签: java android android-layout

您好我的活动顶部有linearLayout个按钮和下拉菜单。它们用于通过串行初始化连接。我点击连接并建立连接我希望按钮/下拉菜单消失,以便有更多可用于其他东西的空间,我想要一个选项将它带回来,也许是一个按钮。最好的方法是将代码更改为片段还是soemthing?我从来没用过那些?这是一个屏幕截图,http://i.imgur.com/USAns.png我要删除connectspinnersupdate settings我可以做些什么来改变这些代码来做我想做的事情吗?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/MainLayout"
android:background="@drawable/wallpaper"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >


   <LinearLayout android:id="@+id/topButtons" 
    android:layout_margin="4dip"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <Button android:id="@+id/deviceConnect"
        android:layout_margin="8dip"
        android:layout_weight="3"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:text="Connect"/>
    <LinearLayout android:orientation="vertical"
        android:layout_weight="1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <LinearLayout android:orientation="horizontal"
            android:layout_margin="8dip"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
            <TextView android:text="Connected Adapter:"
                android:layout_gravity="center_vertical"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>
            <Spinner android:id="@+id/deviceSpinner"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:drawSelectorOnTop="true"/>
            <TextView android:id="@+id/currentSettings" 
                android:layout_marginLeft="8dip"
                android:text="Current Settings: Not Connected"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"/>
        </LinearLayout>
        <LinearLayout android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <LinearLayout android:orientation="horizontal"
                android:layout_margin="8dip"
                android:layout_weight="1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">
                <TextView android:text="Baud:"
                    android:layout_gravity="center_vertical"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>
                <Spinner android:id="@+id/baudSpinner"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:drawSelectorOnTop="true"/>
            </LinearLayout>
            <LinearLayout android:orientation="horizontal"
                android:layout_margin="8dip"
                android:layout_weight="1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">
                <TextView android:text="Data:"
                    android:layout_gravity="center_vertical"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>
                <Spinner android:id="@+id/dataSpinner"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:drawSelectorOnTop="true"/>
            </LinearLayout>
            <LinearLayout android:orientation="horizontal"
                android:layout_margin="8dip"
                android:layout_weight="1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">
                <TextView android:text="Parity:"
                    android:layout_gravity="center_vertical"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>
                <Spinner android:id="@+id/paritySpinner"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:drawSelectorOnTop="true"/>
            </LinearLayout>
            <LinearLayout android:orientation="horizontal"
                android:layout_margin="8dip"
                android:layout_weight="1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">
                <TextView android:text="Stop:"
                    android:layout_gravity="center_vertical"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>
                <Spinner android:id="@+id/stopSpinner"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:drawSelectorOnTop="true"/>
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>
    <Button android:id="@+id/updateSettings"
        android:layout_margin="8dip"
        android:layout_weight="3"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:text="Update\nSettings"/>
</LinearLayout>

    <RelativeLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">

   <Button android:id="@+id/Command"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Enable"/> 

   <Button android:id="@+id/Command2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Configure"
        android:layout_toRightOf="@+id/Command"/> 

   <Button android:id="@+id/Command3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Exit"
        android:layout_toRightOf="@+id/Command2"/> 

   <Button android:id="@+id/Command4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Show Version"
        android:layout_toRightOf="@+id/Command3"/> 

   <Button android:id="@+id/Command5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Show Run"
        android:layout_toRightOf="@+id/Command4"/> 

    <Button android:id="@+id/Command6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Backspace"
        android:layout_toRightOf="@+id/Command5"/> 

        <Button android:id="@+id/Command7"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Backspace2"
        android:layout_below="@+id/Command"/> 


    <jackpal.androidterm.emulatorview.EmulatorView
    android:id="@+id/emulatorView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:layout_toRightOf="@+id/Command7"
    android:layout_below="@+id/Command" />

     <EditText
        android:id="@+id/term_entry"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:imeOptions="actionNone|flagNoExtractUi"
        android:inputType="text|textImeMultiLine"
        android:layout_toRightOf="@+id/Command7"
        android:layout_below="@+id/emulatorView" />

     <Button
        android:id="@+id/term_entry_send"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/entry_send"
        android:layout_toRightOf="@+id/term_entry" 
        android:layout_below="@+id/emulatorView"/>

    </RelativeLayout>  

</LinearLayout>

4 个答案:

答案 0 :(得分:2)

尝试使用LinerarLayout然后findViewByIdsetVisibility(INVISIBLE)检索setVisibility(GONE)以隐藏它。

要再次显示,您可以使用setVisibility(VISIBLE)执行相同操作。

答案 1 :(得分:1)

使用带有setVisibility(int)标记的GONE方法,使视图不可见,并从屏幕上“删除”。

答案 2 :(得分:1)

请为您添加一个属性LinearLayout标记: 机器人:能见度= “水涨船高”

如果你想让它可见,只需调用setVisibility(View.VISIBLE);

希望得到这个帮助。

答案 3 :(得分:1)

view.setVisibility(int)就是您所需要的。

但是,view.setVisibility(GONE)无法在任何地方使用:它只能在视图中使用。如果您想将其隐藏在您的活动中(最常见的情况),则必须致电view.setVisibility(View.GONE),然后view.setVisibility(View.VISIBLE)再次展示。