|
|
@@ -1,54 +1,45 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:orientation="vertical"
|
|
|
- android:background="@color/white">
|
|
|
+<LinearLayout
|
|
|
+ style="@style/commonPopView"
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/send_qzone_text"
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="45dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/qzone_send_word"
|
|
|
- android:textColor="@color/black"
|
|
|
- android:textSize="15sp"/>
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="0.3dp"
|
|
|
- android:background="@color/button_invalid"/>
|
|
|
- <TextView
|
|
|
- android:id="@+id/send_qzone_picture"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="45dp"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/qzone_send_picture"
|
|
|
- android:textColor="@color/black"
|
|
|
- android:textSize="15sp"/>
|
|
|
-
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="0.3dp"
|
|
|
- android:background="@color/button_invalid"/>
|
|
|
- <TextView
|
|
|
- android:id="@+id/send_qzone_video"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="45dp"
|
|
|
- android:gravity="center"
|
|
|
- android:textColor="@color/black"
|
|
|
- android:text="@string/qzone_send_video"
|
|
|
- android:textSize="15sp"/>
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="10dp"
|
|
|
- android:background="@color/black_gray"/>
|
|
|
- <TextView
|
|
|
- android:id="@+id/send_qzone_cancel"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="45dp"
|
|
|
- android:gravity="center"
|
|
|
- android:textColor="@color/black"
|
|
|
- android:text="@string/common_cancel"
|
|
|
- android:textSize="15sp"/>
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/shape_common_pop_option_item"
|
|
|
+ android:orientation="vertical">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/send_qzone_text"
|
|
|
+ style="@style/commonPopItemTop"
|
|
|
+ android:text="@string/qzone_send_word"
|
|
|
+ />
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0.3dp"
|
|
|
+ android:background="@color/button_invalid"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/send_qzone_picture"
|
|
|
+ style="@style/commonPopItem"
|
|
|
+ android:text="@string/qzone_send_picture"
|
|
|
+ />
|
|
|
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0.3dp"
|
|
|
+ android:background="@color/button_invalid"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/send_qzone_video"
|
|
|
+ style="@style/commonPopItem"
|
|
|
+ android:text="@string/qzone_send_video"
|
|
|
+ />
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="10dp"
|
|
|
+ android:background="@color/black_gray"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/send_qzone_cancel"
|
|
|
+ style="@style/commonPopCancelItem"
|
|
|
+ android:text="@string/common_cancel"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
</LinearLayout>
|