Blame view

C5/app/src/main/res/layout/item_user_vote_result.xml 1.08 KB
81252b84   孙向锦   C5 vote
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="match_parent">
  
      <LinearLayout
          android:layout_width="@dimen/px628dp"
          android:layout_height="@dimen/px120dp"
          android:layout_centerHorizontal="true"
          android:orientation="horizontal">
  
          <TextView
              android:id="@+id/name"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_weight="1"
              android:gravity="center_vertical|left"
              android:textColor="@color/white"
              android:textSize="@dimen/px60dp" />
  
          <TextView
              android:id="@+id/desc"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_weight="1"
              android:gravity="center_vertical|right"
              android:textColor="@color/white"
              android:textSize="@dimen/px60dp" />
  
      </LinearLayout>
  </RelativeLayout>