Hallo,
ich habe die folgenden beiden XML-Layout-Files (layout/main.xml und layout-land/main.xlm) erstellt:
Code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TimePicker
android:id="@+id/timePicker1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
Alles anzeigen
sowie
Code
<?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" >
<TimePicker
android:id="@+id/timePicker1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
Alles anzeigen
Die App besitzt außer dem bereits vom Eclipse-ADT-Assistenten zunächst keinen weiteren Programmcode.
Beim Start der app scheint zunächst alles OK, doch wenn ich das Smartphone drehe, verschwinden die Stunden.
Was mache ich falsch?
Gruß
Ralf Kirschner