Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2007 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <!-- In-call Phone UI; see InCallActivity.java. --> |
Christine Chen | e7097d7 | 2013-08-02 20:31:31 -0700 | [diff] [blame] | 18 | <FrameLayout |
| 19 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 20 | android:layout_width="match_parent" |
| 21 | android:layout_height="match_parent" |
| 22 | android:id="@+id/main"> |
| 23 | |
| 24 | <LinearLayout |
| 25 | android:id="@+id/in_call_and_button_container" |
| 26 | android:layout_width="match_parent" |
| 27 | android:layout_height="match_parent" |
| 28 | android:orientation="vertical"> |
| 29 | |
| 30 | <RelativeLayout |
| 31 | android:id="@+id/in_call_card_container" |
Chiao Cheng | 550f92b | 2013-07-19 19:10:55 -0700 | [diff] [blame] | 32 | android:layout_width="match_parent" |
Christine Chen | e7097d7 | 2013-08-02 20:31:31 -0700 | [diff] [blame] | 33 | android:layout_height="0dp" |
| 34 | android:layout_weight="1"> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 35 | |
Christine Chen | e7097d7 | 2013-08-02 20:31:31 -0700 | [diff] [blame] | 36 | <fragment |
| 37 | android:name="com.android.incallui.CallCardFragment" |
| 38 | android:id="@+id/callCardFragment" |
| 39 | android:layout_width="match_parent" |
| 40 | android:layout_height="match_parent" |
| 41 | android:layout_alignParentTop="true" |
| 42 | android:layout_alignParentStart="true" /> |
| 43 | <fragment |
| 44 | android:name="com.android.incallui.DialpadFragment" |
| 45 | android:id="@+id/dialpadFragment" |
| 46 | android:layout_width="match_parent" |
| 47 | android:layout_height="match_parent" |
| 48 | android:layout_alignParentTop="true" |
| 49 | android:layout_alignParentStart="true" /> |
| 50 | </RelativeLayout> |
Santos Cordon | 7ac6cb3 | 2013-08-05 02:17:28 -0700 | [diff] [blame] | 51 | |
Chiao Cheng | a152b46 | 2013-07-23 13:30:19 -0700 | [diff] [blame] | 52 | <fragment android:name="com.android.incallui.CallButtonFragment" |
| 53 | android:id="@+id/callButtonFragment" |
| 54 | android:layout_width="match_parent" |
| 55 | android:layout_height="wrap_content"/> |
Chiao Cheng | 550f92b | 2013-07-19 19:10:55 -0700 | [diff] [blame] | 56 | |
| 57 | </LinearLayout> |
| 58 | |
Santos Cordon | 7ac6cb3 | 2013-08-05 02:17:28 -0700 | [diff] [blame] | 59 | <fragment android:name="com.android.incallui.AnswerFragment" |
| 60 | android:id="@+id/answerFragment" |
| 61 | android:layout_width="match_parent" |
| 62 | android:layout_height="wrap_content" |
| 63 | android:layout_alignParentBottom="true" |
| 64 | android:layout_centerHorizontal="true" |
Santos Cordon | e9e6f43 | 2013-08-27 19:02:12 -0700 | [diff] [blame] | 65 | android:gravity="top" |
| 66 | android:layout_gravity="bottom|center_horizontal" |
| 67 | android:layout_marginBottom="@dimen/glowpadview_margin_bottom" |
| 68 | android:visibility="gone" /> |
Chiao Cheng | a44c591 | 2013-07-15 14:54:27 -0700 | [diff] [blame] | 69 | |
Christine Chen | 5345442 | 2013-09-05 10:57:05 -0700 | [diff] [blame] | 70 | <fragment android:name="com.android.incallui.ConferenceManagerFragment" |
| 71 | android:id="@+id/conferenceManagerFragment" |
| 72 | android:layout_width="match_parent" |
| 73 | android:layout_height="match_parent" |
| 74 | android:layout_alignParentTop="true" |
| 75 | android:layout_alignParentStart="true" |
| 76 | android:layout_alignParentBottom="true" |
| 77 | android:layout_alignParentEnd="true" /> |
| 78 | |
Chiao Cheng | f09116f | 2013-07-18 19:38:07 -0700 | [diff] [blame] | 79 | </FrameLayout> |