Reputation: 4343
I'm quite new to Android Studio and for my app I need to create a custom ListView made of cells that have:
the cells should look something like this:
I would really appreciate if you show me a way to do it using the design interface in Android Studio instead of the xml editor.
Up until now I created a simple listView but I don't know how to customize it. This is the xml code:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="dancam.com.chords.TabMainActivity">
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/listView"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" />
</RelativeLayout>
Upvotes: 0
Views: 943