質問編集履歴
1
カスタムしているListViewのxmlを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -97,3 +97,61 @@
|
|
97
97
|
|
98
98
|
|
99
99
|
```
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
**カスタムしているListView artist_row.xml **
|
104
|
+
|
105
|
+
```xml
|
106
|
+
|
107
|
+
<?xml version="1.0" encoding="utf-8"?>
|
108
|
+
|
109
|
+
<LinearLayout
|
110
|
+
|
111
|
+
xmlns:android="http://schemas.android.com/apk/res/android"
|
112
|
+
|
113
|
+
android:layout_width="match_parent"
|
114
|
+
|
115
|
+
android:layout_height="match_parent"
|
116
|
+
|
117
|
+
android:orientation="vertical">
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
<TextView
|
122
|
+
|
123
|
+
android:id="@+id/tvArtistName"
|
124
|
+
|
125
|
+
android:layout_width="wrap_content"
|
126
|
+
|
127
|
+
android:layout_height="wrap_content"/>
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
<TextView
|
132
|
+
|
133
|
+
android:id="@+id/tvTitle"
|
134
|
+
|
135
|
+
android:layout_width="wrap_content"
|
136
|
+
|
137
|
+
android:layout_height="wrap_content"/>
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
<TextView <!--このTextViewをURLリンクにしたい-->
|
142
|
+
|
143
|
+
android:id="@+id/tvItemUrl"
|
144
|
+
|
145
|
+
android:layout_width="wrap_content"
|
146
|
+
|
147
|
+
android:layout_height="wrap_content"
|
148
|
+
|
149
|
+
android:autoLink="web"
|
150
|
+
|
151
|
+
android:clickable="true"/>
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
</LinearLayout>
|
156
|
+
|
157
|
+
```
|