My favorites
▼
|
Sign in
myandroidwidgets
Sample Apps for Android
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
CustomExpandableListView
/
src
/
com
/
beanie
/
example
/
list
/
classes
/
Vehicle.java
r56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.beanie.example.list.classes;
public class Vehicle {
private String name;
private String group;
public String getGroup() {
return group;
}
public void setGroup(String group) {
this.group = group;
}
public Vehicle(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Show details
Hide details
Change log
r15
by coomar.101 on Sep 16, 2010
Diff
Initial Commit
Go to:
...tomExpandableListView/.classpath
...ustomExpandableListView/.project
...ableListView/AndroidManifest.xml
.../CustomExpandableListView/assets
...dableListView/default.properties
/trunk/CustomExpandableListView/res
...ndableListView/res/drawable-hdpi
...tView/res/drawable-hdpi/icon.png
...ndableListView/res/drawable-ldpi
...tView/res/drawable-ldpi/icon.png
...ndableListView/res/drawable-mdpi
...tView/res/drawable-mdpi/bike.png
...stView/res/drawable-mdpi/bus.png
...stView/res/drawable-mdpi/car.png
...tView/res/drawable-mdpi/icon.png
...ew/res/drawable-mdpi/title.9.png
...tomExpandableListView/res/layout
...View/res/layout/child_layout.xml
...View/res/layout/group_layout.xml
...ableListView/res/layout/main.xml
...tomExpandableListView/res/values
...eListView/res/values/strings.xml
/trunk/CustomExpandableListView/src
...CustomExpandableListView/src/com
...xpandableListView/src/com/beanie
...eListView/src/com/beanie/example
...View/src/com/beanie/example/list
...example/list/SampleActivity.java
.../com/beanie/example/list/adapter
...apter/ExpandableListAdapter.java
.../com/beanie/example/list/classes
...e/example/list/classes/Bike.java
...ie/example/list/classes/Bus.java
...ie/example/list/classes/Car.java
...xample/list/classes/Vehicle.java
...src/com/beanie/example/list/data
.../list/data/MockDataProvider.java
Project members,
sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 453 bytes, 28 lines
View raw file
Powered by
Google Project Hosting