博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android复制WIN8点击下沉倾斜系统瓷砖效果
阅读量:6035 次
发布时间:2019-06-20

本文共 2275 字,大约阅读时间需要 7 分钟。

效果

使用说明

Java代码

import android.app.Activity;import android.os.Bundle;import android.widget.Toast;public class TestRolateAnimActivity extends Activity {    /** Called when the activity is first created. */	MyImageView joke;    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);                joke=(MyImageView) findViewById(R.id.c_joke);        joke.setOnClickIntent(new MyImageView.OnViewClick() {						@Override			public void onClick() {				// TODO Auto-generated method stub				Toast.makeText(TestRolateAnimActivity.this, "事件触发", 1000).show();				System.out.println("1");			}		});    }}

XML代码

xml version="1.0" encoding="utf-8"?

> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="center" android:orientation="vertical" android:background="@drawable/bkg_img_default"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" > <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" > <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" > <com.ljp.ani.MyImageView android:id="@+id/c_joke" android:layout_width="wrap_content" android:scaleType="matrix" android:layout_height="wrap_content" android:layout_margin="2dp" android:src="@drawable/left_top" /> <com.ljp.ani.MyImageView android:id="@+id/c_idea" android:layout_width="wrap_content" android:scaleType="matrix" android:layout_height="wrap_content" android:layout_margin="2dp" android:src="@drawable/left_bottom" /> </LinearLayout> <com.ljp.ani.MyImageView android:id="@+id/c_constellation" android:layout_width="wrap_content" android:scaleType="matrix" android:layout_height="wrap_content" android:layout_margin="2dp" android:src="@drawable/right" /> </LinearLayout> <com.ljp.ani.MyImageView android:id="@+id/c_recommend" android:layout_width="wrap_content" android:scaleType="matrix" android:layout_height="wrap_content" android:layout_margin="2dp" android:src="@drawable/bottom" /> </LinearLayout> </LinearLayout>

你可能感兴趣的文章
C++中struct和class的区别 [转]
查看>>
C++ ofstream和ifstream详细用法
查看>>
【G-BLASTN 1.0正式发布】
查看>>
Mysql 连接查询 Mysql支持的连接查询有哪些
查看>>
《ASP.NET1200例》<asp:DataList>分页显示图片
查看>>
wireshark tcp 协议分析 z
查看>>
Need a code of lazy load for div--reference
查看>>
HTable和HTablePool使用注意事项
查看>>
如何使用JW Player来播放Flash并隐藏控制按钮和自定义播放完成后执行的JS
查看>>
04 http协议模拟登陆发帖
查看>>
Codeforces Round #298 (Div. 2) B. Covered Path 物理题/暴力枚举
查看>>
百度地图定位地址为空
查看>>
云计算设计模式(五)——计算资源整合模式
查看>>
关于classpath
查看>>
[数据库事务与锁]详解一: 彻底理解数据库事务
查看>>
Debug和Release区别
查看>>
Android 手机卫士--打包生成apk维护到服务器
查看>>
Python下载
查看>>
USACO 5.1.1凸包
查看>>
.net ubuntu 下兼容性
查看>>