中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

android的ExpandableListView-創(chuàng)新互聯(lián)

activity_main.xml

10年積累的成都網(wǎng)站建設(shè)、做網(wǎng)站經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先制作網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有遼寧免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/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="http://schemas.android.com/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="http://schemas.android.com/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>

MainActivity

package 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ā)郵件", "管理郵箱", "登錄登出", "注冊(cè)綁定"},
		            {"演示編輯", "演示排版", "演示處理", "演示打印"},
		    };
		@Override
		public int getGroupCount() {
			// TODO Auto-generated method stub
			return skills.length;
		}
		//二級(jí)列表的數(shù)量
		@Override
		public int getChildrenCount(int groupPosition) {
			// TODO Auto-generated method stub
			return groups[groupPosition].length;
		}
		//返回每一組的對(duì)象
		@Override
		public Object getGroup(int groupPosition) {
			// TODO Auto-generated method stub
			return skills[groupPosition];
		}
		//返回每組中的列表項(xiàng)
		@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 parent) {
			// TODO Auto-generated method stub
			if(convertView==null){
				convertView=getLayoutInflater().inflate(R.layout.child_item, null);
				ImageView p_w_picpathView=(ImageView) convertView.findViewById(R.id.p_w_picpathViewchild_1);
				TextView textView=(TextView) convertView.findViewById(R.id.textViewchild_1);
				p_w_picpathView.setImageResource(R.drawable.ic_launcher);
				textView.setText(groups[groupPosition][childPosition]);
			}
			return convertView;
		}

		@Override
		public boolean isChildSelectable(int groupPosition, int childPosition) {
			// TODO Auto-generated method stub
			return true;
		}
		
	}
}

android的ExpandableListView

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。

當(dāng)前文章:android的ExpandableListView-創(chuàng)新互聯(lián)
文章源于:http://m.rwnh.cn/article16/espdg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機(jī)網(wǎng)站建設(shè)、做網(wǎng)站、網(wǎng)站策劃品牌網(wǎng)站設(shè)計(jì)、ChatGPT、定制網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站網(wǎng)頁(yè)設(shè)計(jì)
冕宁县| 原平市| 东乌珠穆沁旗| 钦州市| 伊春市| 普陀区| 青冈县| 许昌县| 左云县| 清徐县| 清丰县| 西丰县| 巴中市| 南郑县| 靖远县| 平原县| 蒙城县| 成武县| 双辽市| 永州市| 大名县| 昌江| 新巴尔虎左旗| 海原县| 务川| 临猗县| 建昌县| 宿州市| 苏尼特右旗| 乌兰察布市| 高碑店市| 巴马| 甘肃省| 集安市| 密山市| 乳源| 潮安县| 黄龙县| 大厂| 靖边县| 确山县|