| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | |
| 3 android:layout_width="match_parent" | |
| 4 android:layout_height="wrap_content" > | |
| 5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| 6 android:layout_width="match_parent" | |
| 7 android:layout_height="wrap_content" | |
| 8 android:orientation="vertical" | |
| 9 android:background="#ffffff" > | |
| 10 <TextView android:layout_width="match_parent" | |
| 11 android:layout_height="wrap_content" | |
| 12 android:textColor="#1e1d1e" | |
| 13 android:gravity="center" | |
| 14 android:textSize="22sp" | |
| 15 android:textStyle="bold" | |
| 16 android:text="@string/abb_frp_report_bugs" /> | |
| 17 <View android:layout_width="match_parent" | |
| 18 android:layout_height="2dip" | |
| 19 android:layout_marginTop="8dip" | |
| 20 android:layout_marginBottom="8dip" | |
| 21 android:background="#dddddd" /> | |
| 22 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| 23 android:layout_width="match_parent" | |
| 24 android:layout_height="wrap_content" | |
| 25 android:orientation="horizontal" > | |
| 26 <TextView android:id="@+id/abb_frp_main_text" | |
| 27 android:layout_width="wrap_content" | |
| 28 android:layout_height="wrap_content" | |
| 29 android:layout_weight="0.5" | |
| 30 android:textColor="#1e1d1e" /> | |
| 31 <ImageView android:layout_width="wrap_content" | |
| 32 android:layout_height="wrap_content" | |
| 33 android:layout_weight="0.5" | |
| 34 android:layout_marginLeft="4dip" | |
| 35 android:scaleType="fitStart" | |
| 36 android:src="@drawable/abb_community_screenshot" /> | |
| 37 </LinearLayout> | |
| 38 </LinearLayout> | |
| 39 </ScrollView> | |
| 40 | |
| OLD | NEW |