Hallo an alle,
ich bräuchte mal Hilfe beim erstellen eines eigenen Steuerelementes.
Und zwar möchte ich ein CardLayout erstellen mit folgendem Code:
Code
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical"
android:paddingBottom="6dp"
android:paddingTop="6dp"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:longClickable="true"
android:clickable="true">
<RelativeLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="@android:color/background_light"
android:paddingTop="6dp"
android:paddingBottom="6dp"
android:paddingLeft="4dp"
android:paddingRight="4dp">
</RelativeLayout>
<View
android:layout_height="2dp"
android:layout_width="match_parent"
android:background="#D2D2D2" />
</LinearLayout>
Alles anzeigen
Das RelativeLayout soll nachher noch befüllt werden können mit beliebigen Elementen.
Leider hab ich nirgends etwas in diese Richtung gefunden.
Kennt sich jemand damit evtl. damit aus und kann mir helfen?
Danke schonmal an alle, die sich die Mühe machen