1

在顶部,我有本地车牌图像,里面有编辑文本。

我需要向左或向右滑动并将本地车牌图像切换到全局车牌(新)图像以输入较少的限制值。

以下所有其他信息应保持不变。

请推荐我如何在Android中做到这一点?

4

2 回答 2

0

您可以使用gestureoverlayview来处理触摸和滑动检测请参考这个网站

http://developer.android.com/reference/android/gesture/GestureOverlayView.html

于 2013-04-23T09:49:34.610 回答
0

使用ViewSwitcher

<RelativeLayout
android:background="#0000FF"
android:layout_width="fill_parent"
android:layout_height="fill_parent"  >

<ImageView 
        android:id="@+id/img1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:src="@drawable/smile" />


<TextView
    android:text="Loading..."
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:textSize="20dp"
    android:textColor="#FFFFFF"
    android:layout_centerHorizontal="true"
    android:layout_below="@+id/progressbar" />

</RelativeLayout>

<RelativeLayout
android:background="#FFFF00"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView
        android:text="Finished!"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textSize="20dp"
        android:textColor="#000000"
        android:layout_marginTop="10dp"
        android:layout_centerHorizontal="true" />

<ImageView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/img1"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="50dp"
        android:src="@drawable/smile" />

</RelativeLayout>

于 2013-04-23T09:02:40.867 回答