• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Android Samples


Commit MetaInfo

修订版33f48e951dba2efb988446aa8950926e54110e6a (tree)
时间2014-06-14 00:55:04
作者Masahiko, SAWAI <say@user...>
CommiterMasahiko, SAWAI

Log Message

Added expandable-listview-hello module

更改概述

差异

--- /dev/null
+++ b/expandable-listview-hello/AndroidManifest.xml
@@ -0,0 +1,21 @@
1+<?xml version="1.0" encoding="utf-8"?>
2+<manifest
3+ xmlns:android="http://schemas.android.com/apk/res/android"
4+ package="com.example.hello.android.expandable_listview_hello"
5+ android:versionCode="1"
6+ android:versionName="1.0"
7+>
8+ <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="19" />
9+
10+ <application android:label="@string/app_name">
11+ <activity
12+ android:name="MainActivity"
13+ android:label="@string/app_name"
14+ >
15+ <intent-filter>
16+ <action android:name="android.intent.action.MAIN" />
17+ <category android:name="android.intent.category.LAUNCHER" />
18+ </intent-filter>
19+ </activity>
20+ </application>
21+</manifest>
--- /dev/null
+++ b/expandable-listview-hello/Makefile
@@ -0,0 +1,46 @@
1+
2+all : package
3+
4+#################### build
5+
6+compile :
7+ mvn $@
8+
9+gen :
10+ mvn android:generate-sources
11+
12+package :
13+ mvn $@
14+
15+release :
16+ mvn clean -Prelease package
17+
18+install :
19+ mvn $@
20+
21+deploy :
22+ mvn package android:deploy
23+
24+undeploy :
25+ mvn android:undeploy
26+
27+rebuild :
28+ mvn clean package
29+
30+redeploy :
31+ mvn clean package android:deploy
32+
33+#################### emulator
34+
35+start :
36+ mvn android:emulator-start
37+
38+stop :
39+ mvn android:emulator-stop
40+
41+####################
42+dist :
43+ mvn assembly:assembly
44+
45+clean :
46+ mvn $@
--- /dev/null
+++ b/expandable-listview-hello/README.txt
@@ -0,0 +1,19 @@
1+! expandable-listview-hello
2+
3+折りたたみ可能なリストビューである ExpandableListView のサンプル。
4+
5+このサンプルではデータを表示するために SimpleExpandableListAdapter を
6+使用している。
7+
8+ExpandableListAdapter は以下のような継承関係となっている。
9+
10+- android.widget.BaseExpandableListAdapter
11+ - android.widget.SimpleExpandableListAdapter
12+ - android.widget.CursorTreeAdapter
13+ - android.widget.ResourceCursorTreeAdapter
14+ - android.widget.SimpleCursorTreeAdapter
15+
16+これらのクラスのうち SimpleExpandableListAdapter 以外は抽象クラスであり、
17+継承して必要なメソッドを実装して利用する必要がある。
18+
19+
--- /dev/null
+++ b/expandable-listview-hello/pom.xml
@@ -0,0 +1,142 @@
1+<?xml version="1.0" encoding="UTF-8" ?>
2+<project
3+ xmlns="http://maven.apache.org/POM/4.0.0"
4+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
6+>
7+ <modelVersion>4.0.0</modelVersion>
8+ <groupId>com.example.hello</groupId>
9+ <artifactId>expandable-listview-hello</artifactId>
10+ <packaging>apk</packaging>
11+ <version>1.0.0</version>
12+ <name>ExpandableListView Hello</name>
13+ <url>http://www.example.com/</url>
14+
15+ <parent>
16+ <groupId>com.example.hello</groupId>
17+ <artifactId>android-samples</artifactId>
18+ <version>1.0.0</version>
19+ </parent>
20+
21+ <dependencies>
22+
23+ <dependency>
24+ <groupId>android</groupId>
25+ <artifactId>android</artifactId>
26+ <version>1.5_r4</version>
27+ <!--
28+ <version>1.5_r3</version>
29+ <version>1.5_r4</version>
30+ <version>1.6_r2</version>
31+ <version>2.1.2</version>
32+ <version>2.1_r1</version>
33+ <version>2.2.1</version>
34+ <version>2.3.1</version>
35+ <version>2.3.3</version>
36+ <version>4.0.1.2</version>
37+ -->
38+ <scope>provided</scope>
39+ </dependency>
40+
41+ <dependency>
42+ <groupId>junit</groupId>
43+ <artifactId>junit</artifactId>
44+ <scope>test</scope>
45+ </dependency>
46+ </dependencies>
47+
48+ <build>
49+ <sourceDirectory>src</sourceDirectory>
50+
51+ <plugins>
52+ <plugin>
53+ <groupId>com.jayway.maven.plugins.android.generation2</groupId>
54+ <artifactId>android-maven-plugin</artifactId>
55+ <configuration>
56+ <sdk>
57+ <!--<path>${env.ANDROID_HOME}</path>-->
58+ <platform>4</platform>
59+ </sdk>
60+ </configuration>
61+ <extensions>true</extensions>
62+ </plugin>
63+
64+ <!-- mvn compile -->
65+ <plugin>
66+ <groupId>org.apache.maven.plugins</groupId>
67+ <artifactId>maven-compiler-plugin</artifactId>
68+ <configuration>
69+ <source>1.5</source>
70+ <target>1.5</target>
71+ <encoding>UTF-8</encoding>
72+ </configuration>
73+ </plugin>
74+
75+ <!-- mvn assembly:assembly -->
76+ <plugin>
77+ <groupId>org.apache.maven.plugins</groupId>
78+ <artifactId>maven-assembly-plugin</artifactId>
79+ <configuration>
80+ <descriptorRefs>
81+ <!--
82+ <descriptorRef>jar-with-dependencies</descriptorRef>
83+ <descriptorRef>bin</descriptorRef>
84+ <descriptorRef>src</descriptorRef>
85+ -->
86+ <descriptorRef>project</descriptorRef>
87+ </descriptorRefs>
88+ </configuration>
89+ </plugin>
90+
91+ <!-- mvn resources:resources -->
92+ <plugin>
93+ <groupId>org.apache.maven.plugins</groupId>
94+ <artifactId>maven-resources-plugin</artifactId>
95+ <configuration>
96+ <encoding>UTF-8</encoding>
97+ </configuration>
98+ </plugin>
99+
100+ <!-- mvn site -->
101+ <plugin>
102+ <groupId>org.apache.maven.plugins</groupId>
103+ <artifactId>maven-site-plugin</artifactId>
104+ <configuration>
105+ <locales>en</locales>
106+ <inputEncoding>UTF-8</inputEncoding>
107+ <outputEncoding>UTF-8</outputEncoding>
108+
109+ <reportPlugins>
110+ <plugin>
111+ <groupId>org.apache.maven.plugins</groupId>
112+ <artifactId>maven-project-info-reports-plugin</artifactId>
113+ </plugin>
114+
115+ <!-- mvn javadoc:javadoc -->
116+ <plugin>
117+ <groupId>org.apache.maven.plugins</groupId>
118+ <artifactId>maven-javadoc-plugin</artifactId>
119+ <configuration>
120+ <charset>utf-8</charset>
121+ </configuration>
122+ </plugin>
123+ </reportPlugins>
124+ </configuration>
125+ </plugin>
126+
127+ </plugins>
128+
129+ <!-- mvn resources:resources -->
130+ <resources>
131+ <resource>
132+ <directory>res</directory>
133+ <filtering>false</filtering>
134+ <includes>
135+ <include>**/*.properties</include>
136+ </includes>
137+ </resource>
138+ </resources>
139+ </build>
140+
141+
142+</project>
--- /dev/null
+++ b/expandable-listview-hello/res/layout/main_activity.xml
@@ -0,0 +1,20 @@
1+<?xml version="1.0" encoding="utf-8"?>
2+<FrameLayout
3+ xmlns:android="http://schemas.android.com/apk/res/android"
4+ android:layout_width="fill_parent"
5+ android:layout_height="fill_parent"
6+ android:padding="4dip"
7+>
8+ <ExpandableListView
9+ android:id="@android:id/list"
10+ android:layout_width="fill_parent"
11+ android:layout_height="fill_parent"
12+ />
13+ <TextView
14+ android:id="@android:id/empty"
15+ android:layout_width="wrap_content"
16+ android:layout_height="wrap_content"
17+ android:layout_gravity="center"
18+ android:text="@string/no_data"
19+ />
20+</FrameLayout>
\ No newline at end of file
--- /dev/null
+++ b/expandable-listview-hello/res/values/strings.xml
@@ -0,0 +1,5 @@
1+<?xml version="1.0" encoding="utf-8"?>
2+<resources>
3+ <string name="app_name">ExpandableListView Hello</string>
4+ <string name="no_data">No data</string>
5+</resources>
--- /dev/null
+++ b/expandable-listview-hello/src/com/example/hello/android/expandable_listview_hello/MainActivity.java
@@ -0,0 +1,124 @@
1+/*
2+ * The MIT License
3+ *
4+ * Copyright 2014 Masahiko, SAWAI <masahiko.sawai@gmail.com>.
5+ *
6+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7+ * of this software and associated documentation files (the "Software"), to deal
8+ * in the Software without restriction, including without limitation the rights
9+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+ * copies of the Software, and to permit persons to whom the Software is
11+ * furnished to do so, subject to the following conditions:
12+ *
13+ * The above copyright notice and this permission notice shall be included in
14+ * all copies or substantial portions of the Software.
15+ *
16+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22+ * THE SOFTWARE.
23+ */
24+package com.example.hello.android.expandable_listview_hello;
25+
26+import android.app.ExpandableListActivity;
27+import android.os.Bundle;
28+import android.util.Log;
29+import android.widget.SimpleExpandableListAdapter;
30+import java.util.ArrayList;
31+import java.util.HashMap;
32+import java.util.List;
33+import java.util.Map;
34+
35+public class MainActivity extends ExpandableListActivity
36+{
37+
38+ private static final String LOG_TAG = "XXX";
39+ private static final String MAPPING_KEY_CATEGORY = "Category";
40+ private static final String MAPPING_KEY_TITLE = "Title";
41+ private static final String MAPPING_KEY_AUTHOR = "Author";
42+ private static final String[] GROUP_MAPPING_FROM = new String[]
43+ {
44+ MAPPING_KEY_CATEGORY
45+ };
46+ private static final int[] GROUP_MAPPING_TO = new int[]
47+ {
48+ android.R.id.text1
49+ };
50+ private static final String[] CHILD_MAPPING_FROM = new String[]
51+ {
52+ MAPPING_KEY_TITLE,
53+ MAPPING_KEY_AUTHOR,
54+ };
55+ private static final int[] CHILD_MAPPING_TO = new int[]
56+ {
57+ android.R.id.text1,
58+ android.R.id.text2,
59+ };
60+ private static final int CATEGORY_COUNT = 5;
61+ private static final int BOOKS_PER_CATEGORY_COUNT = 4;
62+ private List<Map<String, String>> groupList;
63+ private List<List<Map<String, String>>> childList;
64+
65+ @Override
66+ protected void onCreate(Bundle savedInstanceState)
67+ {
68+ Log.v(LOG_TAG, "onCreate() : Hello");
69+
70+ super.onCreate(savedInstanceState);
71+ setContentView(R.layout.main_activity);
72+
73+ // Init SimpleExpandableListAdapter
74+ SimpleExpandableListAdapter adapter = new SimpleExpandableListAdapter(this,
75+ getGroupList(),
76+ android.R.layout.simple_expandable_list_item_1,
77+ GROUP_MAPPING_FROM,
78+ GROUP_MAPPING_TO,
79+ getChildList(),
80+ android.R.layout.simple_expandable_list_item_2,
81+ CHILD_MAPPING_FROM,
82+ CHILD_MAPPING_TO);
83+
84+ setListAdapter(adapter);
85+
86+ Log.v(LOG_TAG, "onCreate() : Bye");
87+ }
88+
89+ private List<Map<String, String>> getGroupList()
90+ {
91+ if (groupList == null)
92+ {
93+ groupList = new ArrayList<Map<String, String>>();
94+ for (int i = 0; i < CATEGORY_COUNT; i++)
95+ {
96+ Map<String, String> categoryData = new HashMap<String, String>();
97+ categoryData.put(MAPPING_KEY_CATEGORY, String.format("Category-%02d", i));
98+ groupList.add(categoryData);
99+ }
100+ }
101+ return groupList;
102+ }
103+
104+ private List<List<Map<String, String>>> getChildList()
105+ {
106+ if (childList == null)
107+ {
108+ childList = new ArrayList<List<Map<String, String>>>();
109+ for (int i = 0; i < CATEGORY_COUNT; i++)
110+ {
111+ List<Map<String, String>> booksInCategoryList = new ArrayList<Map<String, String>>();
112+ for (int j = 0; j < BOOKS_PER_CATEGORY_COUNT; j++)
113+ {
114+ Map<String, String> bookData = new HashMap<String, String>();
115+ bookData.put(MAPPING_KEY_TITLE, String.format("Title-%02d", j));
116+ bookData.put(MAPPING_KEY_AUTHOR, String.format("Author-%02d", j));
117+ booksInCategoryList.add(bookData);
118+ }
119+ childList.add(booksInCategoryList);
120+ }
121+ }
122+ return childList;
123+ }
124+}
--- a/pom.xml
+++ b/pom.xml
@@ -60,6 +60,7 @@
6060 <module>drawable-xml-shape-types</module>
6161
6262 <module>event-keyboard</module>
63+ <module>expandable-listview-hello</module>
6364
6465 <module>fragment-compatibility-hello</module>
6566 <module>fragment-hello</module>