1

您好linearLayout,我的活动顶部有一个按钮和下拉菜单。它们用于通过串行初始化连接。我单击连接并建立连接我希望按钮/下拉菜单消失,以便有更多空间可用于其他事物,并且我希望可以选择将其恢复,也许是一个按钮。最好的方法是将代码更改为片段或某些东西吗?我从来没有用过那些?这是一个屏幕截图, 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

4 回答 4

2

尝试您的活动以LinerarLayout使用findViewById然后setVisibility(INVISIBLE)setVisibility(GONE)隐藏它来检索它。

要再次显示它,您可以使用setVisibility(VISIBLE).

于 2013-01-15T12:18:38.680 回答
1

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

于 2013-01-15T12:19:18.943 回答
1

请为您的 LinearLayout 标签添加一个属性:android:visibility="gone"

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

希望这有帮助。

于 2013-01-15T12:23:55.387 回答
1

view.setVisibility(int)是你需要的。

但是,view.setVisibility(GONE)不能在任何地方工作:它只能在视图内工作。如果您想从您的活动中隐藏它(最常见的情况),您必须调用view.setVisibility(View.GONE), 并view.setVisibility(View.VISIBLE)再次显示它。

于 2013-01-15T12:27:24.830 回答