replaced text buttons with image buttons stolen from jssip demo client
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/AoRList"
|
||||
android:paddingTop="16dp"
|
||||
android:paddingLeft="3dp"
|
||||
android:paddingStart="3dp"
|
||||
android:textSize="20sp"
|
||||
android:textColor="@android:color/black"
|
||||
android:text="Outgoing call to ..." >
|
||||
@@ -62,53 +62,56 @@
|
||||
android:layout_weight = "0"
|
||||
android:layout_gravity = "center_vertical"
|
||||
android:visibility="invisible"
|
||||
android:contentDescription="@string/app_name"
|
||||
>
|
||||
android:contentDescription="@string/app_name" >
|
||||
</ImageButton>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<Button
|
||||
<ImageButton
|
||||
android:id="@+id/callButton"
|
||||
android:layout_width="@dimen/button_width"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@android:drawable/btn_default"
|
||||
android:layout_below="@id/calleeRow" >
|
||||
</Button>
|
||||
android:layout_below="@id/calleeRow"
|
||||
android:padding="0dp"
|
||||
android:src="@drawable/call" >
|
||||
</ImageButton>
|
||||
|
||||
<Button
|
||||
<ImageButton
|
||||
android:id="@+id/holdButton"
|
||||
android:layout_width="@dimen/button_width"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@android:drawable/btn_default"
|
||||
android:text="Hold"
|
||||
android:layout_below="@id/calleeRow"
|
||||
android:layout_marginLeft="106dp"
|
||||
android:padding="0dp"
|
||||
android:src="@drawable/hold"
|
||||
android:layout_marginStart="60dp"
|
||||
android:visibility="invisible" >
|
||||
</Button>
|
||||
|
||||
<Button
|
||||
android:id="@+id/contactsButton"
|
||||
android:layout_width="@dimen/button_width"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@android:drawable/btn_default"
|
||||
android:text="Contacts"
|
||||
android:layout_below="@id/calleeRow"
|
||||
android:layout_marginLeft="212dp"
|
||||
android:visibility="invisible" >
|
||||
</Button>
|
||||
</ImageButton>
|
||||
|
||||
<EditText
|
||||
android:id="@+id/dtmf"
|
||||
android:layout_width="@dimen/button_width"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/calleeRow"
|
||||
android:layout_marginLeft="212dp"
|
||||
android:layout_marginStart="120dp"
|
||||
android:inputType="phone"
|
||||
android:textSize="20sp"
|
||||
android:hint="DTMF" >
|
||||
android:hint="DTMF"
|
||||
android:visibility="invisible" >
|
||||
</EditText>
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/historyButton"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/calleeRow"
|
||||
android:padding="0dp"
|
||||
android:background="@null"
|
||||
android:src="@drawable/clock"
|
||||
android:layout_marginEnd="0dp"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:visibility="invisible" >
|
||||
</ImageButton>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</ScrollView>
|
||||
|
||||
Reference in New Issue
Block a user