AndroidアプリケーションのListViewのスタイリングについてサポートが必要です。このようなスタイリングの仕方を調べようとしていますが、間違ったアイテムを探していると思います。
私のデータはContentProviderによって返されるオブジェクトで構成されており、CursorLoaderを使用してデータにアクセスします。データには、日付ごとのセクションヘッダーがあります。セクション内の各アイテムにはカテゴリがあり、カテゴリのカラーコードで左端の境界線(マージンまたはパディング)に色を付けたいと思います。以下のレイアウトxmlを参照してください。詳細行は、左下の位置にボタンがある3行のデータで構成されています。
リストがどのように表示されるかについては、このGoogle描画を参照してください。
ListViewのスタイルを設定する方法の描画
このフォーマットは可能ですか?
助けてくれてありがとう。
<?xml version="1.0" encoding="utf-8"?>
<!--
* This file is part of MythTV for Android
*
* MythTV for Android is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* MythTV for Android is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MythTV for Android. If not, see <http://www.gnu.org/licenses/>.
*
* This software can be found at <https://github.com/MythTV-Android/mythtv-for-android/>
*
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/upcoming_header_row"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="8dp"
android:paddingRight="8dp" >
<TextView
android:id="@+id/upcoming_header_label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@color/body_text_1" />
</LinearLayout>
<LinearLayout
android:id="@+id/upcoming_detail_row"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="8dp"
android:paddingRight="8dp" >
<TextView
android:id="@+id/upcoming_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@color/body_text_1"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/upcoming_sub_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@color/body_text_1" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="8dp"
android:paddingRight="8dp" >
<TextView
android:id="@+id/upcoming_channel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:textColor="@color/body_text_1" />
<TextView
android:id="@+id/upcoming_start_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textColor="@color/body_text_1" />
<Button
android:id="@+id/upcoming_dont_record"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="@string/btn_upcoming_dont_record"
android:textColor="@color/body_text_1"
android:textSize="@dimen/text_size_small" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>