mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:padding="6dip" android:layout_height="wrap_content"
|
|
android:id="@+id/outcall_chooser_linear_v" android:layout_width="fill_parent"
|
|
android:gravity="center">
|
|
|
|
<LinearLayout android:id="@+id/LinearLayout02"
|
|
android:layout_height="wrap_content" android:layout_width="fill_parent"
|
|
android:layout_weight="0.5" android:gravity="center">
|
|
<ImageButton android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" android:src="@drawable/logo_linphone_57x57"
|
|
android:id="@+id/outcall_chooser_linphone_button" android:background="@android:color/transparent"></ImageButton>
|
|
</LinearLayout>
|
|
<LinearLayout android:id="@+id/LinearLayout01"
|
|
android:layout_width="fill_parent" android:layout_weight=".5"
|
|
android:gravity="center" android:layout_height="fill_parent">
|
|
<Button android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" android:text="@string/outcall_chooser_cellular"
|
|
android:layout_below="@+id/outcall_text" android:layout_alignRight="@+id/outcall_text"
|
|
android:id="@+id/outcall_chooser_cellular_button"></Button>
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|