2018-06-05-ListView

ListView

靜態(tài)的詞條匹配

通過(guò)android:entries屬性來(lái)創(chuàng)建

  1. 首先在res/values下創(chuàng)建arrays.xml文件
<ListView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/listView"
        android:dividerHeight="30dp"          設(shè)置間隔寬度
        android:divider="@color/colorAccent"     設(shè)置間隔顏色
        android:fadingEdge="vertical"         fadingEdge:拉滾動(dòng)條時(shí) ,邊框漸變的放向,變淡
        android:fastScrollEnabled="true"       設(shè)置快速滾動(dòng)
        android:entries="@array/name"         匹配靜態(tài)的數(shù)組
        android:listSelector="#00ff00"        設(shè)置被選中列表的顏色
        android:layout_alignParentStart="true"   
        android:layout_marginStart="24dp" />
        
  1. 加載到Activity
public class MainActivity extends AppCompatActivity {
    private ListView listView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        listView = (ListView) findViewById(R.id.listView);
        //添加時(shí)間監(jiān)聽(tīng)
        listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                TextView tv = (TextView) view;
                Toast.makeText(MainActivity.this,tv.getText(),Toast.LENGTH_SHORT).show();
            }
        });
    }
    
}

ListView專(zhuān)用的Activity:ListActivity

注意:對(duì)于 ListView專(zhuān)用的Activity:ListActivity來(lái)說(shuō)熊户,他不需要配置布局文件坞嘀,只需要有數(shù)據(jù)文件

  1. 首先在res/values下創(chuàng)建arrays.xml文件
<ListView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/listView"
        android:dividerHeight="30dp"          設(shè)置間隔寬度
        android:divider="@color/colorAccent"     設(shè)置間隔顏色
        android:fadingEdge="vertical"         fadingEdge:拉滾動(dòng)條時(shí) ,邊框漸變的放向,變淡
        android:fastScrollEnabled="true"       設(shè)置快速滾動(dòng)
        android:entries="@array/name"         匹配靜態(tài)的數(shù)組
        android:listSelector="#00ff00"        設(shè)置被選中列表的顏色
        android:layout_alignParentStart="true"   
        android:layout_marginStart="24dp" />

  1. Activity
public class Main3Activity extends ListActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        
        //使用android提供的樣式
        ArrayAdapter arrayAdapter = ArrayAdapter.createFromResource(this, R.array.name, android.R.layout.simple_list_item_1);
        setListAdapter(arrayAdapter);
    }

    //設(shè)置事件監(jiān)聽(tīng)
    @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        Toast.makeText(this,((TextView)v).getText(),Toast.LENGTH_SHORT).show();
    }
}

ListView和ListActivity單選框和多選框

  1. xml文件布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/activity_main4ctivity"
    tools:context="com.example.tianmengmeng.coding8.Main4ctivity">

    <ListView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/listView2"
        android:layout_alignParentTop="true"
        android:layout_alignParentEnd="true" />
</RelativeLayout>
  1. Activity
public class Main4ctivity extends AppCompatActivity {

    private ListView listView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main4ctivity);

        listView = (ListView) findViewById(R.id.listView2);

        String[] arr = getResources().getStringArray(R.array.name);
        
        //單選框
//        ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_single_choice,arr);
//        listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);

       //多選框
        ArrayAdapter<String> arrayAdapter1 = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_multiple_choice,arr);
        listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

        listView.setAdapter(arrayAdapter1);
    }

}

ListView實(shí)現(xiàn)圖文列表

  1. xml布局文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/activity_main5"
    tools:context="com.example.tianmengmeng.coding8.Main5Activity">

    <ListView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/listView3"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" />
</RelativeLayout>
  1. ListView每單元的布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:padding="16dp">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imageView"
        android:src="@drawable/ic_launcher"
        android:layout_marginLeft="10dp"
        />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:id="@+id/textView2" />
</LinearLayout>
  1. Activity
public class Main5Activity extends AppCompatActivity {

    private ListView listView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main5);

        listView = (ListView) findViewById(R.id.listView3);

        //準(zhǔn)備數(shù)據(jù)独撇,每一個(gè)HashMap是一條記錄
        
        //這倆個(gè)內(nèi)容對(duì)應(yīng)著Map的兩個(gè)key,"title"躁锁、"icon"
        HashMap<String,Object> title1 = new HashMap<>();
        title1.put("title","title-1");
        title1.put("icon",android.R.drawable.alert_dark_frame);
        HashMap<String,Object> title2 = new HashMap<>();
        title2.put("title", "title-2");
        title2.put("icon",android.R.drawable.arrow_up_float);
        HashMap<String,Object> title3 = new HashMap<>();
        title3.put("title", "title-3");
        title3.put("icon",android.R.drawable.bottom_bar);

        //適配器中是ArrayList類(lèi)型的數(shù)據(jù)纷铣,ArrayList中每條是ListView的一行數(shù)據(jù)
        ArrayList<Map<String,Object>> list = new ArrayList<>();
        list.add(title1);
        list.add(title2);
        list.add(title3);

        //把數(shù)據(jù)填充到Adapter中
        SimpleAdapter sa = new SimpleAdapter(this,list,R.layout.list_item_5,new String[]{"title","icon"},new int[]{R.id.textView2,R.id.imageView});
        listView.setAdapter(sa);
    }

}


L 文字Map 圖片Map
I 文字Map 圖片Map
S 文字Map 圖片Map
T 文字Map 圖片Map

自定義的ListView

  1. xml文件,添加ListView
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/activity_main6"
    tools:context="com.example.tianmengmeng.coding8.Main6Activity">

    <ListView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/listView4"
        android:layout_alignParentTop="true"
        android:layout_alignParentEnd="true" />
</RelativeLayout>

  1. 自定義的ListView每行的布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:padding="16dp">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imageView"
        android:src="@drawable/ic_launcher"
        android:layout_marginLeft="10dp"
        />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:id="@+id/textView2" />
</LinearLayout>
  1. Activity战转,綁定自定義的適配器
public class Main6Activity extends AppCompatActivity {

    private ListView listView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main6);

        listView = (ListView) findViewById(R.id.listView4);
        listView.setAdapter(new MyAdapter(this));


    }


    static class MyAdapter extends BaseAdapter{
        private String[] titles = {"title-1","title-2","title-3","title-4","title-5"};
        private int[] icons = {android.R.drawable.ic_btn_speak_now,
                android.R.drawable.alert_dark_frame,
                android.R.drawable.alert_light_frame,
                android.R.drawable.arrow_down_float,
                android.R.drawable.arrow_up_float,
        };
        private Context context;

        public MyAdapter(Context context){
            this.context = context;
        }

        @Override
        public int getCount() {
            return titles.length;
        }

        @Override
        public Object getItem(int position) {
            return titles[position];
        }

        @Override
        public long getItemId(int position) {
            return position;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
        
            //獲取資源文件
            LayoutInflater inflater = LayoutInflater.from(context);
            View view = inflater.inflate(R.layout.list_item_6, null);

            //獲取布局文件
            TextView textView = (TextView) view.findViewById(R.id.textView2);
            ImageView imageView = (ImageView) view.findViewById(R.id.imageView);
            
            //添加文字圖片到布局中
            textView.setText(titles[position]);
            imageView.setImageResource(icons[position]);


            //返回視圖
            return view;
        }
    }

}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末搜立,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子槐秧,更是在濱河造成了極大的恐慌啄踊,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件色鸳,死亡現(xiàn)場(chǎng)離奇詭異社痛,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)命雀,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)蒜哀,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人吏砂,你說(shuō)我怎么就攤上這事撵儿。” “怎么了狐血?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵淀歇,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我匈织,道長(zhǎng)浪默,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任缀匕,我火速辦了婚禮纳决,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘乡小。我一直安慰自己阔加,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布满钟。 她就那樣靜靜地躺著胜榔,像睡著了一般胳喷。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上夭织,一...
    開(kāi)封第一講書(shū)人閱讀 49,007評(píng)論 1 284
  • 那天吭露,我揣著相機(jī)與錄音,去河邊找鬼摔癣。 笑死奴饮,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的择浊。 我是一名探鬼主播,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼逾条,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼琢岩!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起师脂,我...
    開(kāi)封第一講書(shū)人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤担孔,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后吃警,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體糕篇,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年酌心,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了拌消。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡安券,死狀恐怖墩崩,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情侯勉,我是刑警寧澤鹦筹,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布,位于F島的核電站址貌,受9級(jí)特大地震影響铐拐,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜练对,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一遍蟋、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧锹淌,春花似錦匿值、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)钟些。三九已至,卻和暖如春绊谭,著一層夾襖步出監(jiān)牢的瞬間政恍,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工达传, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留篙耗,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓宪赶,卻偏偏與公主長(zhǎng)得像宗弯,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子搂妻,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容