Skip to content

Commit

Permalink
Se arreglan unos detalles de la app
Browse files Browse the repository at this point in the history
  • Loading branch information
sanrodari committed Nov 7, 2012
1 parent dc70dfe commit 519970d
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 3 deletions.
Binary file modified bin/classes.dex
Binary file not shown.
Binary file modified bin/classes/com/example/conversor/R$string.class
Binary file not shown.
Binary file modified bin/classes/com/example/conversor/R$style.class
Binary file not shown.
Binary file modified bin/resources.ap_
Binary file not shown.
1 change: 1 addition & 0 deletions gen/com/example/conversor/R.java
Expand Up @@ -36,6 +36,7 @@ public static final class string {
public static final int convertir=0x7f040007;
public static final int hello_world=0x7f040001;
public static final int hexadecimal=0x7f040006;
public static final int ingrese_el_numero_a_convertir=0x7f040008;
public static final int menu_settings=0x7f040002;
public static final int octal=0x7f040005;
public static final int title_activity_main=0x7f040003;
Expand Down
2 changes: 1 addition & 1 deletion project.properties
Expand Up @@ -11,4 +11,4 @@
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-10
target=android-8
1 change: 1 addition & 0 deletions res/layout/activity_main.xml
Expand Up @@ -5,6 +5,7 @@

<EditText
android:id="@+id/campoTexto"
android:hint="@string/ingrese_el_numero_a_convertir"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
Expand Down
5 changes: 3 additions & 2 deletions res/values/strings.xml
@@ -1,12 +1,13 @@
<resources>

<string name="app_name">conversor</string>
<string name="app_name">Conversor</string>
<string name="hello_world">Hello world!</string>
<string name="menu_settings">Settings</string>
<string name="title_activity_main">MainActivity</string>
<string name="title_activity_main">Conversor</string>
<string name="binario">Binario</string>
<string name="octal">Octal</string>
<string name="hexadecimal">Hexadecimal</string>
<string name="convertir">Convertir</string>
<string name="ingrese_el_numero_a_convertir">Ingrese el numero a convertir</string>

</resources>

0 comments on commit 519970d

Please sign in to comment.