android-http-get-json

android-http-get-json
This commit is contained in:
hmkcode
2013-10-04 21:12:50 +03:00
parent 55590bb4b6
commit a5ebe43cd8
9 changed files with 235 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/tvIsConnected"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="#FF0000"
android:textColor="#FFF"
android:textSize="18dp"
android:layout_marginBottom="5dp"
android:text="is connected? " />
<EditText
android:id="@+id/etResponse"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:ems="10"
android:layout_marginTop="10dp"
android:inputType="textMultiLine" >
<requestFocus />
</EditText>
</LinearLayout>