android:gravity="center_vertical"
|
|
|
103
|
android:text="32"
|
|
|
104
|
android:textColor="#555555"
|
|
|
105
|
android:textSize="12sp"
|
|
|
106
|
app:layout_constraintBottom_toBottomOf="@+id/joinLabel"
|
|
|
107
|
app:layout_constraintStart_toEndOf="@+id/joinLabel"
|
|
|
108
|
app:layout_constraintTop_toTopOf="@+id/joinLabel" />
|
|
|
109
|
</android.support.constraint.ConstraintLayout>
|
|
|
110
|
|
|
|
111
|
<LinearLayout
|
|
|
112
|
android:layout_width="0dp"
|
|
|
113
|
android:layout_height="50dp"
|
|
|
114
|
android:background="#ff00ff"
|
|
|
115
|
android:orientation="horizontal"
|
|
|
116
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
117
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
118
|
app:layout_constraintStart_toStartOf="parent"></LinearLayout>
|
|
|
119
|
</android.support.constraint.ConstraintLayout>
|
|
|
@ -1,19 +0,0 @@
|
|
1
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
|
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
4
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
5
|
|
android:layout_width="match_parent"
|
|
6
|
|
android:layout_height="match_parent"
|
|
7
|
|
tools:context=".activity.TopicDetailActivity">
|
|
8
|
|
|
|
9
|
|
<com.andview.refreshview.XRefreshView
|
|
10
|
|
android:layout_width="0dp"
|
|
11
|
|
android:layout_height="0dp"
|
|
12
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
13
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
14
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
15
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
16
|
|
|
|
17
|
|
</com.andview.refreshview.XRefreshView>
|
|
18
|
|
|
|
19
|
|
</android.support.constraint.ConstraintLayout>
|