Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
uv-amse-android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Lucas NAURY
uv-amse-android
Commits
fa7b9f79
Commit
fa7b9f79
authored
Feb 16, 2024
by
Lucas NAURY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Edit list element style
parent
e3c50500
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
11 deletions
+53
-11
HomeAdapter.java
...ain/java/com/example/tpleboncoin/ui/home/HomeAdapter.java
+11
-5
annonces_liste.xml
app/src/main/res/layout/annonces_liste.xml
+42
-6
No files found.
app/src/main/java/com/example/tpleboncoin/ui/home/HomeAdapter.java
View file @
fa7b9f79
...
...
@@ -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)
*/
public
static
class
ViewHolder
extends
RecyclerView
.
ViewHolder
{
private
final
TextView
textView
;
private
final
TextView
titreTextView
;
private
final
TextView
adresseTextView
;
public
ViewHolder
(
View
v
)
{
super
(
v
);
...
...
@@ -33,11 +34,15 @@ public class HomeAdapter extends RecyclerView.Adapter<HomeAdapter.ViewHolder> {
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
()
{
return
textView
;
public
TextView
getTitreTextView
()
{
return
titreTextView
;
}
public
TextView
getAdresseTextView
()
{
return
adresseTextView
;
}
}
// END_INCLUDE(recyclerViewSampleViewHolder)
...
...
@@ -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
// with that element
viewHolder
.
getTextView
().
setText
(
mDataSet
[
position
].
getTitre
());
viewHolder
.
getTitreTextView
().
setText
(
mDataSet
[
position
].
getTitre
());
viewHolder
.
getAdresseTextView
().
setText
(
mDataSet
[
position
].
getAdresse
());
}
// END_INCLUDE(recyclerViewOnBindViewHolder)
...
...
app/src/main/res/layout/annonces_liste.xml
View file @
fa7b9f79
<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:gravity=
"center_vertical"
>
android:gravity=
"center_vertical"
android:minHeight=
"50dp"
>
<TextView
android:id=
"@+id/text_annonce"
android:layout_width=
"wrap_content"
<LinearLayout
android:layout_width=
"match_parent"
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>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment