Hallo zusammen,
ich möchte ein Rowlayout für eine Liste haben, in dem zwei Texte untereinander und daneben ein Bild angezeigt wird.
Zur Zeit habe ich das so realisiert, es ist aber nicht besonders ressourcenfreundlich...
Kann ich das irgendwie verbessern?
HTML
<?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"
android:padding="6dip"
android:baselineAligned="false" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_height="0dp"
android:layout_width="match_parent"
android:layout_gravity="center_vertical"
android:layout_weight="1" >
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" >
<TextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:gravity="center_vertical"
android:textColor="@color/setoneblue"
android:textSize="20dp"
android:typeface="sans" />
<TextView
android:id="@+id/time"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:ellipsize="marquee"
android:singleLine="true" />
</LinearLayout>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
Alles anzeigen