mirror of
https://github.com/etesync/android
synced 2024-11-15 12:28:57 +00:00
1986837be8
* allow to enter account name at the end of account setup (fixes #13) * advise user to enter email address as account name (closes #24) * support for iCal TRANSP (availability free/busy field) * create better UIDs using iCal4j UidGenerator and Settings.Secure.ANDROID_ID * better ORGANIZER/ATTENDEE support, but there are big Android issues yet * various improvements and bug fixes
50 lines
1.7 KiB
XML
50 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:scrollbars="vertical" >
|
|
|
|
<GridLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:columnCount="2"
|
|
android:padding="10dp"
|
|
android:useDefaultMargins="true" >
|
|
|
|
<TextView
|
|
android:layout_columnSpan="2"
|
|
android:layout_gravity="left"
|
|
android:layout_marginBottom="20dp"
|
|
android:text="@string/account_details"
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
<TextView
|
|
android:layout_gravity="left"
|
|
android:text="@string/account_name"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<EditText
|
|
android:id="@+id/account_name"
|
|
android:layout_gravity="fill_horizontal"
|
|
android:hint="@string/account_name_hint"
|
|
android:inputType="textEmailAddress" />
|
|
|
|
<TextView
|
|
android:id="@+id/account_name_info"
|
|
android:layout_width="fill_parent"
|
|
android:layout_columnSpan="2"
|
|
android:layout_gravity="left"
|
|
android:drawableLeft="@drawable/extra_actions_about"
|
|
android:drawablePadding="10dp"
|
|
android:padding="10dp"
|
|
android:text="@string/account_name_info"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<Space
|
|
android:layout_gravity="left|top"
|
|
android:layout_row="3" />
|
|
|
|
</GridLayout>
|
|
|
|
</ScrollView> |