Skip to content

Commit 0ca3a3d

Browse files
committed
Update
1 parent 2b0aa64 commit 0ca3a3d

File tree

19 files changed

+20
-27
lines changed

19 files changed

+20
-27
lines changed

bin/Android_QR_Code.apk

-36 Bytes
Binary file not shown.

bin/classes.dex

-340 Bytes
Binary file not shown.
-20 Bytes
Binary file not shown.

bin/org/georemindme/R$id.class

30 Bytes
Binary file not shown.

bin/org/georemindme/R$layout.class

0 Bytes
Binary file not shown.

bin/org/georemindme/R$string.class

0 Bytes
Binary file not shown.
-101 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.

bin/resources.ap_

112 Bytes
Binary file not shown.

gen/org/georemindme/R.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ public static final class drawable {
1515
public static final int logo=0x7f020001;
1616
}
1717
public static final class id {
18-
public static final int boton=0x7f050002;
19-
public static final int logo=0x7f050000;
20-
public static final int pista=0x7f050001;
18+
public static final int boton=0x7f050003;
19+
public static final int logo=0x7f050001;
20+
public static final int pista=0x7f050002;
21+
public static final int scroll=0x7f050000;
2122
}
2223
public static final class layout {
2324
public static final int captureqr=0x7f030000;

res/layout/captureqr.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:layout_width="fill_parent"
4+
android:layout_height="fill_parent"
5+
android:id="@+id/scroll"
6+
android:background="#FFF"
7+
>
28
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
39
android:orientation="vertical"
410
android:layout_width="fill_parent"
@@ -33,3 +39,4 @@
3339
android:padding="20dp"
3440
/>
3541
</LinearLayout>
42+
</ScrollView>

res/layout/main.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:layout_width="fill_parent"
4+
android:layout_height="fill_parent"
5+
android:id="@+id/scroll"
6+
android:background="#FFF"
7+
>
28
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
39
android:orientation="vertical"
410
android:layout_width="fill_parent"
@@ -23,3 +29,4 @@
2329
android:text="Boton"
2430
/>
2531
</LinearLayout>
32+
</ScrollView>

src/org/alexd/jsonrpc/JSONRPCHttpClient.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,7 @@ public class JSONRPCHttpClient extends JSONRPCClient
5050
/*
5151
* Service URI
5252
*/
53-
private String serviceUri;
54-
55-
/*
56-
* Session Id
57-
*/
58-
private String sessionId;
59-
53+
private String serviceUri;
6054
/*
6155
* Service Method
6256
*/

src/org/georemindme/controller/ReadyState.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,4 @@ public boolean handleMessage(Message msg)
3939
}
4040
return false;
4141
}
42-
43-
44-
private void onRequestQuit()
45-
{
46-
// TODO Auto-generated method stub
47-
controller.quit();
48-
}
4942
}

src/org/georemindme/controller/appserver/Server.java

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,7 @@ public static Server getInstance(Context context, Controller controller)
5555
{
5656
Log.v(LOG, "Server-Server (context, controller)");
5757

58-
// Por si queremos capturar algún mensaje en el servidor
59-
connector = new MVCViewComponent(controller)
60-
{
61-
62-
public boolean handleMessage(Message msg)
63-
{
64-
// TODO Auto-generated method stub
65-
return false;
66-
}
67-
};
58+
6859
this.controller = controller;
6960

7061
}

0 commit comments

Comments
 (0)