2012年3月29日

让一个小图片重复出现,形成一张大图片

摘要: <?xml version="1.0" encoding="utf-8" ?> <bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="@drawable/icon_name" android:tileMode="repeat" /> xml文件如上,放到drawable目录下,它就是一个组合图片。 阅读全文

posted @ 2012-03-29 17:39 亭子 阅读(277) 评论(0) 推荐(0) 编辑

通过addView加子View的注意事项

摘要: RelativeLayout rl = (RelativeLayout)findViewById(R.id.rl);TextView tv = (TextView)getInflater().inflate(R.layout.inset, null);rl.addView(tv); inflate一个layout,将其通过addView加入到另一个ViewGroup中,会出现子View的信息无效了。 为了解决这个问题,需要在inflate时就将子View的信息传入,如下所示:RelativeLayout rl = (RelativeLayout)findViewById(R.id.... 阅读全文

posted @ 2012-03-29 17:36 亭子 阅读(832) 评论(0) 推荐(0) 编辑

导航