一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

Android開發(fā)教程:shape和selector的結(jié)合使用

 天海544 2014-11-04
shape和selector是Android UI設計中經(jīng)常用到的,比如我們要自定義一個圓角Button,點擊Button有些效果的變化,就要用到shape和selector??梢赃@樣說,shape和selector在美化控件中的作用是至關重要的。
1.Shape
簡介
作用:XML中定義的幾何形狀
位置:res/drawable/文件的名稱.xml
使用的方法:
Java代碼中:R.drawable.文件的名稱
XML中:Android:background="@drawable/文件的名稱"
屬性:
<shape>  Android:shape=["rectangle" | "oval" | "line" | "ring"]
其中rectagle矩形,oval橢圓,line水平直線,ring環(huán)形
<shape>中子節(jié)點的常用屬性:
<gradient>  漸變
Android:startColor  起始顏色
Android:endColor  結(jié)束顏色             
Android:angle  漸變角度,0從上到下,90表示從左到右,數(shù)值為45的整數(shù)倍默認為0;
Android:type  漸變的樣式 liner線性漸變 radial環(huán)形漸變 sweep
<solid >  填充
Android:color  填充的顏色
<stroke > 描邊
Android:width 描邊的寬度
Android:color 描邊的顏色
Android:dashWidth 表示'-'橫線的寬度
Android:dashGap 表示'-'橫線之間的距離
<corners > 圓角
Android:radius  圓角的半徑 值越大角越圓
Android:topRightRadius  右上圓角半徑
Android:bottomLeftRadius 右下圓角角半徑
Android:topLeftRadius 左上圓角半徑
Android:bottomRightRadius 左下圓角半徑
2.Selector
簡介
位置:res/drawable/文件的名稱.xml
使用的方法:
Java代碼中:R.drawable.文件的名稱
XML中:Android:background="@drawable/文件的名稱"
<?xml version="1.0" encoding="utf-8" ?>     
<selector xmlns:Android="http://schemas./apk/res/android">   
<!-- 默認時的背景圖片-->    
<item Android:drawable="@drawable/pic1" />      
<!-- 沒有焦點時的背景圖片 -->    
<item 
   Android:state_window_focused="false"      
   android:drawable="@drawable/pic_blue" 
   />     
<!-- 非觸摸模式下獲得焦點并單擊時的背景圖片 -->    
<item 
   Android:state_focused="true" 
   android:state_pressed="true"   
   android:drawable= "@drawable/pic_red" 
   />   
<!-- 觸摸模式下單擊時的背景圖片-->    
<item 
   Android:state_focused="false" 
   Android:state_pressed="true"   
   Android:drawable="@drawable/pic_pink" 
   />    
<!--選中時的圖片背景-->    
<item 
   Android:state_selected="true" 
   android:drawable="@drawable/pic_orange" 
   />     
<!--獲得焦點時的圖片背景-->    
<item 
   Android:state_focused="true" 
   Android:drawable="@drawable/pic_green" 
   />     
</selector> 
第一個例子:圓角的Button
第二個例子:shape+selector綜合使用的例子 漂亮的ListView
selector.xml
<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:Android="http://schemas./apk/res/android"> 
    <item Android:state_selected="true"> 
        <shape> 
            <gradient Android:angle="270" android:endColor="#99BD4C" 
                android:startColor="#A5D245" /> 
            <size Android:height="60dp" android:width="320dp" /> 
            <corners android:radius="8dp" /> 
        </shape> 
    </item> 
    <item Android:state_pressed="true"> 
        <shape> 
            <gradient Android:angle="270" android:endColor="#99BD4C" 
                android:startColor="#A5D245"/> 
            <size Android:height="60dp" android:width="320dp" /> 
            <corners android:radius="8dp" /> 
        </shape> 
    </item> 
    <item> 
        <shape> 
            <gradient Android:angle="270" android:endColor="#A8C3B0" 
                android:startColor="#C6CFCE"  /> 
            <size Android:height="60dp" android:width="320dp" /> 
            <corners android:radius="8dp" /> 
        </shape> 
    </item> 
</selector> 
list_item.xml
<?xml version="1.0" encoding="utf-8"?> 
   <LinearLayout  xmlns:Android="http://schemas./apk/res/android" 
    android:orientation="horizontal"   
    Android:layout_width="fill_parent"    
    android:layout_height="wrap_content" 
    Android:background="@drawable/selector" 
    >                     
    <ImageView   
        Android:id="@+id/img"    
        Android:layout_width="wrap_content"   
        android:layout_height="wrap_content"              
        Android:layout_gravity="center_vertical" 
        android:layout_marginLeft="20dp"          
        />                            
        <TextView   
            Android:text="data"   
            android:id="@+id/title" 
            Android:layout_width="fill_parent"   
            android:layout_height="wrap_content"   
            Android:gravity="center_vertical"    
            android:layout_marginLeft="20dp"   
            Android:layout_marginTop="20dp"   
            android:textSize="14sp"                           
            Android:textStyle="bold" 
            android:textColor="@color/black"                          
            > 
        </TextView>           
 </LinearLayout> 
main.xml
<?xml version="1.0" encoding="utf-8"?> 
    <LinearLayout xmlns:Android="http://schemas./apk/res/android" 
        android:orientation="vertical"   
        Android:layout_width="fill_parent"    
        android:layout_height="wrap_content" 
        Android:background="#253853" 
        >                                 
        <ListView   
          Android:id="@+id/list"   
          Android:layout_width="match_parent"   
          android:layout_height="match_parent" 
          Android:cacheColorHint="#00000000" 
          android:divider="#2A4562" 
          Android:dividerHeight="3px" 
          android:listSelector="#264365" 
          Android:drawSelectorOnTop="false"  
          > 
        </ListView>   
</LinearLayout> 
colors.xml
<?xml version="1.0" encoding="utf-8"?> 
<resources> 
    <color name="white">#FFFFFFFF</color> 
    <color name="transparency">#00000000</color> 
    <color name="title_bg">#1C86EE</color> 
    <color name="end_color">#A0cfef83</color> 
    <color name="black">#464646</color> 
</resources> 
MainActivity.xml
package com.lingdududu.customlist;  
import java.util.ArrayList;  
import java.util.HashMap;  
import xb.customlist.R;  
import Android.R.array;  
import android.app.Activity;  
import Android.os.Bundle;  
import android.widget.ArrayAdapter;  
import Android.widget.ListView;  
import android.widget.SimpleAdapter;  
public class MainActivity extends Activity {  
    ListView list;  
    String data[] = new String[]{  
            "China","UK","USA","Japan","German","Canada","ET","Narotu"    
    };  
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.main);  
        list =(ListView) findViewById(R.id.list);          
        SimpleAdapter adapter = new SimpleAdapter(this, getData(), R.layout.list_item,   
                new String[]{"title","img"}, new int[]{R.id.title,R.id.img});  
        list.setAdapter(adapter);          
    }  
    private ArrayList<HashMap<String, Object>> getData() {        
        ArrayList<HashMap<String, Object>> dlist = new ArrayList<HashMap<String,Object>>();  
        for(int i =0;i<data.length;i++){  
            HashMap<String, Object>map = new HashMap<String, Object>();           
            map.put("title", data[i]);  
            map.put("img", R.drawable.item_left2);  
            dlist.add(map);   
        }  
        return dlist;  
    }  
}

    本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多

    国产av一区二区三区麻豆| 五月婷婷六月丁香狠狠| 伊人色综合久久伊人婷婷| 国产亚洲精品俞拍视频福利区| 亚洲中文字幕综合网在线| 五月激情婷婷丁香六月网| 好吊视频有精品永久免费| 久久大香蕉一区二区三区| 国产日韩精品激情在线观看| 天海翼高清二区三区在线| 日韩18一区二区三区| 精品女同一区二区三区| 久久国产精品熟女一区二区三区| 久久久精品日韩欧美丰满| 亚洲日本加勒比在线播放| 亚洲欧洲日韩综合二区| 日本在线高清精品人妻| 麻豆亚州无矿码专区视频| 免费在线观看欧美喷水黄片 | 亚洲精品欧美精品日韩精品| 日韩精品中文字幕在线视频| 日本男人女人干逼视频| 美国黑人一级黄色大片| 久热99中文字幕视频在线| 色鬼综合久久鬼色88| 国产av熟女一区二区三区蜜桃| 五月婷婷综合激情啪啪| 国产一级二级三级观看| 日韩特级黄片免费观看| 国产精品日韩欧美第一页| 日本高清一道一二三区四五区| 欧美日韩一级aa大片| 久草国产精品一区二区| 日本中文字幕在线精品| 日韩一区二区三区久久| 国产内射一级一片内射高清视频| 麻豆蜜桃星空传媒在线观看| 国产成人午夜福利片片| 日本精品中文字幕人妻| 中文字幕一二区在线观看| 少妇人妻一级片一区二区三区 |