0

我正在开发一个基于 voip/sip 的应用程序,该应用程序能够从底部有四个按钮的拨号盘小部件拨打电话

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

<ImageButton
    android:id="@+id/ibtn_handsfree"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/selector_dialpad_action_button"
    android:src="@drawable/selector_handsfree" />

<ImageButton
    android:id="@+id/ibtn_headset"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/selector_dialpad_action_button"
    android:src="@drawable/selector_headset" />

<ImageButton
    android:id="@+id/ibtn_copyToDir"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/selector_dialpad_action_button"
    android:src="@drawable/selector_copytodir" />

<ImageButton
    android:id="@+id/ibtn_keyboard"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/selector_dialpad_action_button"
    android:src="@drawable/selector_keyboard" />
<ImageButton 
    android:id="@+id/ibtn_sendkey_widget"
     android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/selector_dialpad_action_button"
    android:src="@drawable/selector_send_key_dialer"
    />
</LinearLayout>
  1. 是否不鼓励我动态切换任何布局元素的可见性?例如,如果我希望隐藏第四个按钮,这取决于存在的任何活动呼叫(我认为这需要附加一个单独的专用监听器)。
  2. 如果不鼓励对小部件布局进行动态更改,我该怎么做?

感谢您的想法和帮助。

4

1 回答 1

1

我不知道第一个问题的答案,但为了切换小部件中按钮的可见性:

于 2013-05-09T07:21:52.300 回答