52 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
<!--
 | 
						|
  Copyright 2012 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.
 | 
						|
  -->
 | 
						|
 | 
						|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    android:layout_width="match_parent"
 | 
						|
    android:layout_height="match_parent">
 | 
						|
 | 
						|
    <!-- A vertical LinearLayout in a ScrollView. This emulates a ListView (and is lighter weight
 | 
						|
         than a ListView when there aren't many rows). -->
 | 
						|
    <ScrollView android:layout_width="match_parent"
 | 
						|
        android:layout_height="match_parent">
 | 
						|
 | 
						|
        <!-- Note that this LinearLayout has the "animateLayoutChanges" property set to true.
 | 
						|
             This tells the framework to automatically animate child views (in this case, rows)
 | 
						|
             as they are added to and removed from the LinearLayout. -->
 | 
						|
        <LinearLayout android:id="@+id/container"
 | 
						|
            android:layout_width="match_parent"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:orientation="vertical"
 | 
						|
            android:showDividers="middle"
 | 
						|
            android:divider="?android:dividerHorizontal"
 | 
						|
            android:animateLayoutChanges="true"
 | 
						|
            android:paddingLeft="16dp"
 | 
						|
            android:paddingRight="16dp" />
 | 
						|
 | 
						|
    </ScrollView>
 | 
						|
 | 
						|
    <!-- The "empty" view to show when there are no items in the "list" view defined above. -->
 | 
						|
    <TextView android:id="@android:id/empty"
 | 
						|
        style="?android:textAppearanceSmall"
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_gravity="center"
 | 
						|
        android:padding="32dp"
 | 
						|
        android:text="@string/message_empty_layout_changes"
 | 
						|
        android:textColor="?android:textColorSecondary" />
 | 
						|
 | 
						|
</FrameLayout>
 |