您现在的位置: 万盛学电脑网 >> 程序编程 >> 网络编程 >> 安卓开发 >> 正文

android拖动相片特效的方法

作者:佚名    责任编辑:admin    更新时间:2022-06-22

欢迎大家在这里学习android拖动相片特效!下面是我们给大家整理出来的精彩内容。希望大家在这里学习!

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:background="@drawable/white" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 
    <TextView 
    android:id="@+id/myTextView01" 
    android:layout_width="fill_parent"    
    android:layout_height="wrap_content"    
    android:text="@string/hello" 
    android:gravity="center_vertical|center_horizontal" 
    /> 
    <Gallery 
    android:id="@+id/myGallery1"    
    android:layout_width="fill_parent"    
    android:layout_height="wrap_content"    
    android:gravity="bottom"    
    />    
</LinearLayout>