- 浏览: 91422 次
- 性别:
- 来自: 北京
最新评论
-
longlilin987:
是乱码啊,我的怎么不可以
Android实现DES对字符串加密
文章列表
按钮实现spinner
- 博客分类:
- android
int cityID=0; //用于默认选择哪个选项
final String[] cities=new String[]{"上海", "北京", "天津", "重庆", "邯郸"};
tuanCategory.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
new A ...
一.创建xml文件,位置:drawable/xxx.xml,同目录下记得要放相关图片
<?xml version="1.0" encoding="utf-8" ?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 默认时的背景图片-->
<item android:drawable="@drawable/pic1" />
<!-- 没有 ...
一般的View,在view中添加src或者background
<ImageView
android:layout_width="fill_parent"
android:layout_height="50dip"
android:src="@drawable/shape_4" />
shap_4的xml:
<shape xmlns:android="http://schemas.android.com/apk/r ...
如图所示:
任意View或者layout里边添加背景: android:background="@drawable/bg_corners_pressed"
自定义背景bg_corners_pressed.xml : <?xml version="1.0" encoding="UTF-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color=&quo ...
listView背景设置
- 博客分类:
- android
如果listview使用别的layout过滤,那么要想点击Item变背景颜色的话,需要在layout的父layout里边设置android:background="@drawable/list_bg"
list_bg的xml文件
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 没有焦点时的背景图片 -->
<item android:state_window_focused="false" ...