Skip to content

Instantly share code, notes, and snippets.

@jackypanster
Created April 11, 2011 07:06
Show Gist options
  • Save jackypanster/de75003606ec698697b0 to your computer and use it in GitHub Desktop.
Save jackypanster/de75003606ec698697b0 to your computer and use it in GitHub Desktop.
[Bitmap特效处理] main.xml布局文件,主要放了两个ImageView控件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView
android:id="@+id/image01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10px"
/>
<ImageView
android:id="@+id/image02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10px"
/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment