mirror of https://github.com/tasks/tasks
Polished the share activity
parent
670e21a9a6
commit
1c22549a13
Binary file not shown.
|
After Width: | Height: | Size: 743 B |
Binary file not shown.
|
After Width: | Height: | Size: 3.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,87 @@
|
||||
<?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="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:background="#aaa" >
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="50dip"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:layout_marginTop="20dip"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="30dip"
|
||||
android:layout_height="30dip"
|
||||
android:layout_marginRight="20dip"
|
||||
android:scaleType="fitCenter"
|
||||
android:src="@drawable/share_facebook"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/share_facebook"
|
||||
android:gravity="center_vertical"
|
||||
android:layout_width="150dip"
|
||||
android:layout_height="fill_parent"
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold"
|
||||
android:textColor="?attr/asThemeTextColor"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="50dip"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="30dip"
|
||||
android:layout_height="30dip"
|
||||
android:layout_marginRight="20dip"
|
||||
android:scaleType="fitCenter"
|
||||
android:src="@drawable/share_twitter"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/share_twitter"
|
||||
android:gravity="center_vertical"
|
||||
android:layout_width="150dip"
|
||||
android:layout_height="fill_parent"
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold"
|
||||
android:textColor="?attr/asThemeTextColor"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="50dip"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:orientation="horizontal"
|
||||
android:layout_marginBottom="20dip">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="30dip"
|
||||
android:layout_height="30dip"
|
||||
android:layout_marginRight="20dip"
|
||||
android:scaleType="fitCenter"
|
||||
android:src="@drawable/share_google"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/share_google"
|
||||
android:gravity="center_vertical"
|
||||
android:layout_width="150dip"
|
||||
android:layout_height="fill_parent"
|
||||
android:textSize="16sp"
|
||||
android:textStyle="bold"
|
||||
android:textColor="?attr/asThemeTextColor"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<include layout="@layout/astrid_speech_bubble"/>
|
||||
|
||||
</LinearLayout>
|
||||
Loading…
Reference in New Issue