我試圖根據不同的標準設計活動佈局。我已經在xml上創建了佈局,並且默認情況下它會在活動中顯示兩個按鈕(ask,buy)。隱藏兩個按鈕並在xml上顯示不同的按鈕
但是,在某些情況下,我不想顯示這兩個按鈕,只顯示一個按鈕,它們都不在下面,完全不同的按鈕和不同的動作。我怎麼能做到這一點?
換句話說,我想讓我的新按鈕停留在買入和詢問按鈕中。具有相同的尺寸。我應該怎麼做?並非兩個按鈕(併購和詢問),現在中心只有一個按鈕(刪除)。
<Button
android:id="@+id/btnAsk"
android:textSize="16sp"
android:layout_width="0dip"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="ask"
android:layout_marginLeft="10dp"
android:layout_marginRight="5dp"
android:layout_marginBottom="5dp"
android:textStyle="bold"
android:background="@drawable/button_style"
android:textColor="@color/white"/>
<Button
android:id="@+id/btnBuy"
android:layout_width="0dip"
android:layout_weight="1"
android:textSize="16sp"
android:layout_height="wrap_content"
android:text="buy"
android:layout_marginLeft="5dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="5dp"
android:textStyle="bold"
android:background="@drawable/button_style"
android:textColor="@color/white"
/>
設置它對'GONE'或'INVISIBLE'的可見性 –
但是我應該在xml中放置新按鈕的位置? – hotspring
@texas:在'btnBuy'使默認能見度爲'GONE'並將其放在同一個xml文件中並在運行時使其可見和其他GONE –