Commit fa7b9f79 authored by Lucas NAURY's avatar Lucas NAURY

Edit list element style

parent e3c50500
...@@ -22,7 +22,8 @@ public class HomeAdapter extends RecyclerView.Adapter<HomeAdapter.ViewHolder> { ...@@ -22,7 +22,8 @@ public class HomeAdapter extends RecyclerView.Adapter<HomeAdapter.ViewHolder> {
* Provide a reference to the type of views that you are using (custom ViewHolder) * Provide a reference to the type of views that you are using (custom ViewHolder)
*/ */
public static class ViewHolder extends RecyclerView.ViewHolder { public static class ViewHolder extends RecyclerView.ViewHolder {
private final TextView textView; private final TextView titreTextView;
private final TextView adresseTextView;
public ViewHolder(View v) { public ViewHolder(View v) {
super(v); super(v);
...@@ -33,11 +34,15 @@ public class HomeAdapter extends RecyclerView.Adapter<HomeAdapter.ViewHolder> { ...@@ -33,11 +34,15 @@ public class HomeAdapter extends RecyclerView.Adapter<HomeAdapter.ViewHolder> {
Log.d(TAG, "Element " + getAdapterPosition() + " clicked."); Log.d(TAG, "Element " + getAdapterPosition() + " clicked.");
} }
}); });
textView = (TextView) v.findViewById(R.id.text_annonce); titreTextView = (TextView) v.findViewById(R.id.titre_annonce);
adresseTextView = (TextView) v.findViewById(R.id.adresse_annonce);
} }
public TextView getTextView() { public TextView getTitreTextView() {
return textView; return titreTextView;
}
public TextView getAdresseTextView() {
return adresseTextView;
} }
} }
// END_INCLUDE(recyclerViewSampleViewHolder) // END_INCLUDE(recyclerViewSampleViewHolder)
...@@ -71,7 +76,8 @@ public class HomeAdapter extends RecyclerView.Adapter<HomeAdapter.ViewHolder> { ...@@ -71,7 +76,8 @@ public class HomeAdapter extends RecyclerView.Adapter<HomeAdapter.ViewHolder> {
// Get element from your dataset at this position and replace the contents of the view // Get element from your dataset at this position and replace the contents of the view
// with that element // with that element
viewHolder.getTextView().setText(mDataSet[position].getTitre()); viewHolder.getTitreTextView().setText(mDataSet[position].getTitre());
viewHolder.getAdresseTextView().setText(mDataSet[position].getAdresse());
} }
// END_INCLUDE(recyclerViewOnBindViewHolder) // END_INCLUDE(recyclerViewOnBindViewHolder)
......
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center_vertical"> android:gravity="center_vertical"
android:minHeight="50dp">
<TextView <LinearLayout
android:id="@+id/text_annonce" android:layout_width="match_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/text_annonce"/> android:layout_marginBottom="8dp"
android:baselineAligned="false"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="8dp">
<ImageView
android:id="@+id/imageView"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/ic_launcher_background" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/titre_annonce"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-medium"
android:paddingLeft="8dp"
android:text="Titre annonce de test"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
<TextView
android:id="@+id/adresse_annonce"
android:layout_width="148dp"
android:layout_height="wrap_content"
android:paddingLeft="8dp"
android:text="Adresse, 59000 Douai" />
</LinearLayout>
</LinearLayout>
</FrameLayout> </FrameLayout>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment