Button 有按下效果
[功能]
让Button 有按下效果 更有视觉效果
[代码]
1. 先准备2张*.png 一张供默认使用 另一张供按下使用 本例为:
play.png play_down.png
2. 根据各种状态 定制化所显示的 *.png 命名为: myselection.xml
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="false" android:drawable="@drawable/play" /> <item android:state_pressed="true" android:drawable="@drawable/play_down" /> <item android:drawable="@drawable/play" /> </selector>
3. 在 main.xml 布局中 添加Button 元件 并 设置 使用 myselection.xml
<?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" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Button Style!" /> <ImageButton android:id="@+id/playorpause" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="/blog_article/@xml/myselection/index.html" android:background="#00000000" /> </LinearLayout>
4. 大家可以自己看看效果 因为不好截图
其实 除了上面的方法 还有一个方法 为:
1. 在 maun.xml 中添加 ImageButton 且不设置使用的*.png
<?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" > <ImageButton android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
2. 在该ImageButton上设置监听器 并根据其状态使用对应的资源 但是必须要设置默认资源
ImageButton btn = (ImageButton) findViewById(R.id.button); //to set its default *.png btn.setBackgroundResource(R.drawable.play); btn.setOnTouchListener(new ImageButton.OnTouchListener(){ @Override public boolean onTouch(View arg0, MotionEvent arg1) { // TODO Auto-generated method stub if(arg1.getAction() == MotionEvent.ACTION_DOWN){ arg0.setBackgroundResource(R.drawable.play_down); } else if(arg1.getAction() == MotionEvent.ACTION_UP){ arg0.setBackgroundResource(R.drawable.play); } return false; } });
具体哪个方法更好 应该根据自己的场合:
1. 只有一个Button 推荐使用第一个方法
2. 有几个Button 推荐使用第二个 统一定义 然后根据指定的id 来使用目标*.png
done!
另外,“大家可以自己看看效果 因为不好截图”不能PrtScrn?
另外,“大家可以自己看看效果 因为不好截图”不能PrtScrn?
因为时间太短 几乎没有时间停留 一瞬而过
不过 我现在把源代码发上去 想看效果的可以自己运行并试试!
我也是没办法这一点 ImageView.setImageResource() 有其他的问题 只能用setBackgroundResource()了 你有好办法么? 说明下~
我也是没办法这一点 ImageView.setImageResource() 有其他的问题 只能用setBackgroundResource()了 你有好办法么? 说明下~
ImageView.setImageResource有什么问题. 多了一个按钮的边框吗?
我也是没办法这一点 ImageView.setImageResource() 有其他的问题 只能用setBackgroundResource()了 你有好办法么? 说明下~
ImageView.setImageResource有什么问题. 多了一个按钮的边框吗?
对的 除非用了不设置其 android:src 否则会不好看
也不行 因为 MotionEvent.ACTION_DOWN 和 MotionEvent.ACTION_UP 是 2个连贯动作 你的办法也只能捕捉一个
不知道 也有这个问题!
http://www.lovebirdegg.co.tv/?p=5002
给UITableView增加一个好看的背景能为应用程序增色不少,并能促进app的销售,但是随便增加一个背景图片会史你的app更加丑陋。
错误的方式:
//This method produces odd artifacts in the background image: ATableViewController *yourTableViewController = [[ATableViewController alloc] initWithStyle:UITableViewStyleGrouped]; yourTableViewController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"TableViewBackground.png"]]; [window addSubview:yourTableViewController.view]; [window makeKeyAndVisible];
下图是简单的给TableView的backgroundColor设置了一个背景图片:
上面的效果并不是你想给用户看到的好的效果。
正确的方式:
UIView *backgroundView = [[UIView alloc] initWithFrame: window.frame]; backgroundView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"TableViewBackground.png"]]; [window addSubview:backgroundView]; [backgroundView release]; yourTableViewController = [[ATableViewController alloc] initWithStyle:UITableViewStyleGrouped]; yourTableViewController.view.backgroundColor = [UIColor clearColor]; [window addSubview:yourTableViewController.view]; [window makeKeyAndVisible];
下面是效果:
是不是更好看了?
所有的开发语言中都会遇到对象的复制问题,通常复制分为浅复制与深复制两种。以Objective-C中的Collections为例,在我们复制一个Collections的具体对象时,比如一个NSArray的对象,我们使用-copy,这样的结果是一个浅层次的复制,在我们对于原对象进行了改动后,所有使用-copy得到的对象都会被改动,这是由于源对象与当前对象是共享一个对象值的。
如果我们想达到深层次复制,Collections也为我们提供了一些方法。仍然以NSArray为例,我们使用-initWithArray:copyItems:就可以实现这种需求。
NSArray *original = [NSArray arrayWithObjects:@″Mimeoscope″, @″Cyclostyle″,nil]; NSArray *shallowCopy = [original copy]; NSArray *deepCopy = [[NSArray alloc] initWithArray:original copyItems:YES];
如上,shallowCopy, 与original指向的是同一个对象. 而deepCopy, 却是一个包含了original值的新的NSArray对象。这就完成了深复制。同样在The NSDictionary与 NSSet中也有相应的方式实现,分别为
–initWithDictionary:copyItems: 与 –initWithSet:copyItems: methods.
NSKeyedArchiver 压缩一下,再用UnArchiver 解一下
不知哪种好一些?