Skip to content
Snippets Groups Projects
Commit 6507793e authored by Alexandre Savard's avatar Alexandre Savard
Browse files

#15699: Fix call element layout

parent 38d6a15c
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ Corresponding Source for a non-source form of such a combination ...@@ -29,7 +29,7 @@ Corresponding Source for a non-source form of such a combination
shall include the source code for the parts of OpenSSL used as well shall include the source code for the parts of OpenSSL used as well
as that of the covered work. as that of the covered work.
--> -->
<!--
<com.savoirfairelinux.sflphone.client.CallElementView xmlns:android="http://schemas.android.com/apk/res/android" <com.savoirfairelinux.sflphone.client.CallElementView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/panel" android:id="@+id/panel"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -117,4 +117,38 @@ as that of the covered work. ...@@ -117,4 +117,38 @@ as that of the covered work.
android:gravity="center"/> android:gravity="center"/>
</RelativeLayout> </RelativeLayout>
</com.savoirfairelinux.sflphone.client.CallElementView> </com.savoirfairelinux.sflphone.client.CallElementView>
\ No newline at end of file -->
<com.savoirfairelinux.sflphone.client.CallElementView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/panel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minHeight="70dp" >
<RelativeLayout
android:id="@+id/contactview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/box_border">
<TextView
android:id="@+id/display_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/photo"
android:paddingLeft="@dimen/padding_small"
android:paddingTop="@dimen/padding_small"
android:text="Contact Name"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/phones"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/display_name"
android:layout_toRightOf="@+id/photo"
android:paddingBottom="@dimen/padding_small"
android:paddingLeft="@dimen/padding_small"
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall" />
</RelativeLayout>
</com.savoirfairelinux.sflphone.client.CallElementView>
...@@ -53,4 +53,4 @@ as that of the covered work. ...@@ -53,4 +53,4 @@ as that of the covered work.
android:gravity="center" android:gravity="center"
android:text="No data" /> android:text="No data" />
</LinearLayout> </LinearLayout>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment