If opening app has requested only a subset of fields Test: manual - launch from an app, filtered and unfiltered, for normal channels and conversations Bug: 177246841 Change-Id: Ifd70478101d1ea1340d2ecc55033fab55e65ca92 Change-Id: I5194b959c82b2cfa7990c84285aaf69464cff3a8
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<!-- Copyright (C) 2021 The Android Open Source Project
 | 
						|
 | 
						|
     Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
     you may not use this file except in compliance with the License.
 | 
						|
     You may obtain a copy of the License at
 | 
						|
 | 
						|
          http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
     Unless required by applicable law or agreed to in writing, software
 | 
						|
     distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
     See the License for the specific language governing permissions and
 | 
						|
     limitations under the License.
 | 
						|
-->
 | 
						|
<LinearLayout
 | 
						|
    xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    android:id="@+id/main_content"
 | 
						|
    android:layout_height="@dimen/output_switcher_slice_max_height"
 | 
						|
    android:background="@drawable/settings_panel_background"
 | 
						|
    android:orientation="vertical"
 | 
						|
    android:layout_width="match_parent">
 | 
						|
 | 
						|
    <FrameLayout
 | 
						|
        android:id="@android:id/list_container"
 | 
						|
        android:layout_height="0px"
 | 
						|
        android:layout_weight="1"
 | 
						|
        android:layout_width="match_parent"/>
 | 
						|
 | 
						|
    <View
 | 
						|
        xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
        android:id="@+id/footer_divider"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="@dimen/horizontal_divider_height"
 | 
						|
        android:background="?android:attr/dividerHorizontal"/>
 | 
						|
 | 
						|
    <LinearLayout
 | 
						|
        android:id="@+id/footer"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:orientation="horizontal"
 | 
						|
        android:paddingTop="8dp"
 | 
						|
        android:paddingBottom="8dp">
 | 
						|
 | 
						|
        <Button
 | 
						|
            android:id="@+id/see_more"
 | 
						|
            style="@android:style/Widget.DeviceDefault.Button.Borderless.Colored"
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="48dp"
 | 
						|
            android:layout_marginStart="12dp"
 | 
						|
            android:text="@string/see_more"/>
 | 
						|
 | 
						|
        <Space
 | 
						|
            android:layout_weight="1"
 | 
						|
            android:layout_width="0dp"
 | 
						|
            android:layout_height="match_parent" />
 | 
						|
 | 
						|
        <Button
 | 
						|
            android:id="@+id/done"
 | 
						|
            style="@android:style/Widget.DeviceDefault.Button.Borderless.Colored"
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="48dp"
 | 
						|
            android:layout_marginEnd="12dp"
 | 
						|
            android:text="@string/done"/>
 | 
						|
    </LinearLayout>
 | 
						|
</LinearLayout> |