Hallo!
Ich möchte gerne eine App entwickeln, diese soll einen Text von einer Internetseite (geht aber auch ein XML-File, welches ich auf dem Webspace anlege) abfragen und anzeigen.
Leider fehlt mir dazu die Kenntniss, wie ich das am besten anstelle.
Das "Design" bzw. das Grundgerüst habe ich in der main.xml festgelegt.
Die main.xml sieht so aus:
Code
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="center"
android:src="@drawable/background" />
<ImageView
android:layout_width="170px"
android:layout_height="105px"
android:layout_gravity="center_horizontal|top"
android:layout_marginTop="20dip"
android:scaleType="center"
android:src="@drawable/logo" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|center"
android:padding="5dip"
android:background="#AA000000"
android:textColor="#ffffffff"
android:text="Wann steigt die nächste Party?" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|bottom"
android:layout_marginBottom="160dip"
android:padding="10dip"
android:background="#AA000000"
android:textColor="#ffffffff"
android:text="---Hier soll der gegrabbte Text erscheinen---" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dip"
android:layout_gravity="center_horizontal|bottom"
android:padding="10dip"
android:background="#AA000000"
android:textColor="#ffffffff"
android:text="Weiterer Text" />
</FrameLayout>
Alles anzeigen
An der .java Datei im src-Verzeichnis habe ich nichts geändert.
Ich "entwickle" mit Eclipse... wenn euch das hilft
Hoffe zumindest hier auf Hilfe