1

こんにちは私はlinearLayout私の活動の上部にボタンとドロップダウンがあります。これらは、シリアルを介した接続を初期化するために使用されます。[接続]をクリックして接続を確立すると、ボタン/ドロップダウンを非表示にして、他のものに使用できるスペースを増やすことができます。また、ボタンなど、元に戻すオプションが必要です。これを行うための最良の方法は、コードをフラグメントまたは何かに変更することですか?私はそれらを使ったことがありませんか?これがスクリーンショットです。http://i.imgur.com/USAns.png削除したいのですがconnect、 このコードを変更して自分のやりたいことを実行するためにできる簡単なことはありますか?spinnersupdate 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

アクティビティで を取得しLinerarLayoutfindViewByIdから、setVisibility(INVISIBLE)またはsetVisibility(GONE)非表示にしてみてください。

もう一度表示するには、 で同じことができますsetVisibility(VISIBLE)

于 2013-01-15T12:18:38.680 に答える
1

GONEフラグを指定したsetVisibility(int)メソッドを使用して、ビューを非表示にし、画面から「削除」します。

于 2013-01-15T12:19:18.943 に答える
1

view.setVisibility(int)必要なものです。

ただし、view.setVisibility(GONE)どこからでも機能するとは限りません。ビュー内でのみ機能します。アクティビティから非表示にしたい場合 (最も一般的なケース)、 を呼び出してview.setVisibility(View.GONE)view.setVisibility(View.VISIBLE)再度表示する必要があります。

于 2013-01-15T12:27:24.830 に答える
1

LinearLayout タグに属性を追加してください: android:visibility="gone"

表示したい場合は、setVisibility(View.VISIBLE); を呼び出すだけです。

この助けを願っています。

于 2013-01-15T12:23:55.387 に答える