Skip to content

Commit

Permalink
Added ListView deriving class for mac lists
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenDeDauw committed Nov 13, 2010
1 parent 6381807 commit 101a77b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 2 deletions.
Binary file modified bin/Pamela-for-Android.apk
Binary file not shown.
Binary file modified bin/classes.dex
Binary file not shown.
Binary file modified bin/resources.ap_
Binary file not shown.
2 changes: 1 addition & 1 deletion res/layout/main.xml
Expand Up @@ -37,7 +37,7 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<ListView
<MacListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/lstText"
Expand Down
9 changes: 8 additions & 1 deletion src/pamela/client/MacListView.java
Expand Up @@ -19,6 +19,13 @@

package pamela.client;

public class MacListView {
import android.content.Context;
import android.widget.ListView;

public class MacListView extends ListView {

public MacListView(Context context) {
super(context);
}

}

0 comments on commit 101a77b

Please sign in to comment.