82 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
<!--
 | 
						|
 Copyright 2014, 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.
 | 
						|
-->
 | 
						|
<sample>
 | 
						|
    <name>FloatingActionButtonBasic</name>
 | 
						|
    <group>UI</group>
 | 
						|
    <package>com.example.android.floatingactionbuttonbasic</package>
 | 
						|
    <minSdk>21</minSdk>
 | 
						|
 | 
						|
    <strings>
 | 
						|
        <intro>
 | 
						|
            <![CDATA[
 | 
						|
            This sample shows the two sizes of Floating Action Buttons and how to interact with
 | 
						|
            them.
 | 
						|
            ]]>
 | 
						|
        </intro>
 | 
						|
    </strings>
 | 
						|
 | 
						|
    <template src="base"/>
 | 
						|
    <template src="FragmentView"/>
 | 
						|
    <common src="logger"/>
 | 
						|
    <common src="activities"/>
 | 
						|
    <metadata>
 | 
						|
        <status>PUBLISHED</status>
 | 
						|
        <categories>Getting Started, UI</categories>
 | 
						|
        <technologies>Android</technologies>
 | 
						|
        <languages>Java</languages>
 | 
						|
        <solutions>Mobile</solutions>
 | 
						|
        <level>BEGINNER</level>
 | 
						|
        <icon>screenshots/big_icon.png</icon>
 | 
						|
        <screenshots>
 | 
						|
            <img>screenshots/screenshot1.png</img>
 | 
						|
            <img>screenshots/screenshot2.png</img>
 | 
						|
            <img>screenshots/screenshot3.png</img>
 | 
						|
            <img>screenshots/screenshot4.png</img>
 | 
						|
            <img>screenshots/screenshot5.png</img>
 | 
						|
        </screenshots>
 | 
						|
        <api_refs>
 | 
						|
            <android>android.graphics.Outline</android>
 | 
						|
            <android>android.view.ViewOutlineProvider</android>
 | 
						|
            <android>android.widget.Checkable</android>
 | 
						|
        </api_refs>
 | 
						|
        <description>
 | 
						|
<![CDATA[
 | 
						|
This sample shows the two sizes of Floating Action Buttons and
 | 
						|
how to interact with them.
 | 
						|
]]>
 | 
						|
        </description>
 | 
						|
 | 
						|
        <intro>
 | 
						|
<![CDATA[
 | 
						|
This sample shows how to implement a [Checkable][1] Floating Action Button.
 | 
						|
 | 
						|
Floating action buttons are used for a special type of promoted action.
 | 
						|
They are distinguished by a circled icon floating above the UI and have
 | 
						|
special motion behaviors related to morphing, launching, and the transferring anchor point.
 | 
						|
 | 
						|
Floating action buttons come in two sizes:
 | 
						|
the default, which should be used in most cases, and the mini,
 | 
						|
which should only be used to create visual continuity with other elements on the screen.
 | 
						|
 | 
						|
Both sizes of Floating Action Buttons are displayed on screen.
 | 
						|
 | 
						|
[1]: https://developer.android.com/reference/android/widget/Checkable.html
 | 
						|
]]>
 | 
						|
        </intro>
 | 
						|
    </metadata>
 | 
						|
</sample>
 |