私は、フラグメントビューを使用して、フラグメントを使用して要素を表示しようとしています。私はlist_row.xmlのListFragmentを使用してカスタムビューのリストを作成する
グラフィカル表現をたどるよう
私のカスタムビューを作成しlist_row.xml fragment.xmlファイルで
<?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="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="5dip" >
<!-- ListRow Left sied Thumbnail image -->
<LinearLayout
android:id="@+id/thumbnail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginRight="5dip"
android:padding="3dip" >
<ImageView
android:id="@+id/list_image"
android:layout_width="50dip"
android:layout_height="50dip"
android:contentDescription="@string/image_desc"/>
</LinearLayout>
<!-- Menu name -->
<TextView
android:id="@+id/menu_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/thumbnail"
android:layout_toRightOf="@+id/thumbnail"
android:text="@string/menu_name"
android:textColor="#040404"
android:textSize="15sp"
android:textStyle="bold"
android:typeface="sans" />
<!-- Description -->
<TextView
android:id="@+id/description"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/thumbnail"
android:layout_below="@id/menu_name"
android:layout_marginTop="1dip"
android:layout_toRightOf="@+id/thumbnail"
android:text="@string/description"
android:textColor="#343434"
android:textSize="10sp"
tools:ignore="SmallSp" />
<!-- Price -->
<TextView
android:id="@+id/price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignTop="@id/menu_name"
android:layout_marginRight="5dip"
android:gravity="right"
android:text="@string/price"
android:textColor="#10bcc9"
android:textSize="10sp"
android:textStyle="bold"
tools:ignore="SmallSp" />
</RelativeLayout>
、私は簡単に言えばリニアレイアウト内のリストビュー
fragment.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
</LinearLayout>
私は、メニュー名、説明、価格や画像などのlist_row.xmlを移入するために必要なフィールドを持つメニューオブジェクトの配列を、持っています。私は、fragment.xmlのlistViewをlist_row要素で満たす方法を見つけることができませんでした。どんな助けやアイディアもありがとうございます。
PS:は、私が代わりにandroid:id="@+id/listView1"
フィールドのfragment.xmlに考えて、私はCustomArrayAdapterクラスを作成する(SYSTEM32コメントに示唆するように)私は私の問題を解決しListFragment
ちょうどその 'オーバーライドをArrayAdapter'を拡張するクラスを作成し、あなたのリストビューにlist_row.xmlを使用するには'onCreateView()' – Geros
ありがとうございました。私は私の問題を解決しました – inankupeli