




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)
文檔簡介
【移動應(yīng)用開發(fā)技術(shù)】android的ExpandableListView
activity_main.xml<RelativeLayout
xmlns:android="/apk/res/android"
xmlns:tools="/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.expandablelistview.MainActivity"
>
<ExpandableListView
android:id="@+id/ExpandableListView1_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:groupIndicator="@null"
>
</ExpandableListView>
</RelativeLayout>
<!--
android:groupIndicator="@null"去掉自帶的箭頭圖標(biāo)
-->group_item.xml<?xml
version="1.0"
encoding="utf-8"?>
<LinearLayout
xmlns:android="/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<ImageView
android:id="@+id/p_w_picpathViewgroup_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
/>
<TextView
android:id="@+id/textViewgroup_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>child_item.xml<?xml
version="1.0"
encoding="utf-8"?>
<LinearLayout
xmlns:android="/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<ImageView
android:id="@+id/p_w_picpathViewchild_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
android:padding="10dp"
/>
<TextView
android:id="@+id/textViewchild_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="sdfds"
android:padding="10dp"
/>
</LinearLayout>MainActivitypackage
com.example.expandablelistview;
import
android.app.Activity;
import
android.os.Bundle;
import
android.view.Menu;
import
android.view.MenuItem;
import
android.view.View;
import
android.view.ViewGroup;
import
android.widget.BaseExpandableListAdapter;
import
android.widget.ExpandableListView;
import
android.widget.ImageView;
import
android.widget.TextView;
public
class
MainActivity
extends
Activity
{
private
ExpandableListView
expandableListView;
@Override
protected
void
onCreate(Bundle
savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
expandableListView=(ExpandableListView)
findViewById(R.id.ExpandableListView1_1);
expandableListView.setAdapter(new
MyExpandableListAdapter());
}
@Override
public
boolean
onCreateOptionsMenu(Menu
menu)
{
//
Inflate
the
menu;
this
adds
items
to
the
action
bar
if
it
is
present.
getMenuInflater().inflate(R.menu.main,
menu);
return
true;
}
@Override
public
boolean
onOptionsItemSelected(MenuItem
item)
{
//
Handle
action
bar
item
clicks
here.
The
action
bar
will
//
automatically
handle
clicks
on
the
Home/Up
button,
so
long
//
as
you
specify
a
parent
activity
in
AndroidManifest.xml.
int
id
=
item.getItemId();
if
(id
==
R.id.action_settings)
{
return
true;
}
return
super.onOptionsItemSelected(item);
}
class
MyExpandableListAdapter
extends
BaseExpandableListAdapter{
private
String[]
skills
=
new
String[]{
"WORD",
"EXCEL",
"EMAIL",
"PPT"
};
private
String[][]
groups
=
new
String[][]{
{"文檔編輯",
"文檔排版",
"文檔處理",
"文檔打印"},
{"表格編輯",
"表格排版",
"表格處理",
"表格打印"},
{"收發(fā)郵件",
"管理郵箱",
"登錄登出",
"注冊綁定"},
{"演示編輯",
"演示排版",
"演示處理",
"演示打印"},
};
@Override
public
int
getGroupCount()
{
//
TODO
Auto-generated
method
stub
return
skills.length;
}
//二級列表的數(shù)量
@Override
public
int
getChildrenCount(int
groupPosition)
{
//
TODO
Auto-generated
method
stub
return
groups[groupPosition].length;
}
//返回每一組的對象
@Override
public
Object
getGroup(int
groupPosition)
{
//
TODO
Auto-generated
method
stub
return
skills[groupPosition];
}
//返回每組中的列表項
@Override
public
Object
getChild(int
groupPosition,
int
childPosition)
{
//
TODO
Auto-generated
method
stub
return
groups[groupPosition][childPosition];
}
@Override
public
long
getGroupId(int
groupPosition)
{
//
TODO
Auto-generated
method
stub
return
groupPosition;
}
@Override
public
long
getChildId(int
groupPosition,
int
childPosition)
{
//
TODO
Auto-generated
method
stub
return
childPosition;
}
@Override
public
boolean
hasStableIds()
{
//
TODO
Auto-generated
method
stub
return
true;
}
@Override
public
View
getGroupView(int
groupPosition,
boolean
isExpanded,
View
convertView,
ViewGroup
parent)
{
//
TODO
Auto-generated
method
stub
if(convertView==null){
convertView=getLayoutInflater().inflate(R.layout.group_item,
null);
}
ImageView
p_w_picpathView=(ImageView)
convertView.findViewById(R.id.p_w_picpathViewgroup_1);
TextView
textView=(TextView)
convertView.findViewById(R.id.textViewgroup_1);
p_w_picpathView.setImageResource(R.drawable.ic_launcher);
textView.setText(skills[groupPosition]);
return
convertView;
}
@Override
public
View
getChildView(int
groupPosition,
int
childPosition,
boolean
isLastChild,
View
convertView,
ViewGroup
pa
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 本田高端活動方案
- 朋友圈服裝推廣活動方案
- 某公司關(guān)愛兒童活動方案
- 春節(jié)輕功展示活動方案
- 普陀區(qū)公司團建活動方案
- 景區(qū)噴霧活動策劃方案
- 暑期團課活動方案
- 智能小車活動方案
- 校企共建團建活動方案
- 景區(qū)消暑活動方案
- 2025數(shù)學(xué)新課程標(biāo)準(zhǔn)培訓(xùn)
- 稅務(wù)講座課件
- 2025年暑假實踐作業(yè)模板【課件】
- 學(xué)校食堂暑假前收尾工作指南
- 休閑車零部件回收再利用創(chuàng)新創(chuàng)業(yè)項目商業(yè)計劃書
- 滴灌帶生產(chǎn)項目可行性研究報告-D
- 消防系統(tǒng)維護保養(yǎng)方案
- 骨科護理實習(xí)生小講課
- 四川省南充市2023-2024學(xué)年七年級下學(xué)期期末考試道德與法治試卷(含答案)
- 2025至2030中國汽車散熱器行業(yè)市場發(fā)展分析及商業(yè)模式與投融資發(fā)展報告
- 2025年新高考1卷(新課標(biāo)Ⅰ卷)語文試卷(含答案)
評論
0/150
提交評論