2010-04-06 15:54:51 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-09-22 13:58:33 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-12 18:39:51 -05:00
|
|
|
android:layout_width="match_parent"
|
2013-09-22 13:58:33 -04:00
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
2010-04-06 15:54:51 -04:00
|
|
|
android:paddingLeft="3dip"
|
|
|
|
android:paddingRight="?android:attr/scrollbarSize"
|
2013-09-22 13:58:33 -04:00
|
|
|
android:singleLine="true" >
|
2010-04-06 15:54:51 -04:00
|
|
|
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/selected"
|
|
|
|
android:layout_width="wrap_content"
|
2013-09-22 13:58:33 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clickable="false"
|
|
|
|
android:focusable="false"
|
|
|
|
android:focusableInTouchMode="false" />
|
2010-04-06 15:54:51 -04:00
|
|
|
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
2013-09-22 13:58:33 -04:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="5dip" >
|
2010-04-06 15:54:51 -04:00
|
|
|
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
<TextView
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/mainUserId"
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
android:layout_width="wrap_content"
|
2013-09-22 13:58:33 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Main User ID"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2010-04-06 15:54:51 -04:00
|
|
|
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
<TextView
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/mainUserIdRest"
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
android:layout_width="wrap_content"
|
2013-09-22 13:58:33 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="<user@example.com>"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2013-09-22 13:58:33 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="right"
|
|
|
|
android:minWidth="90dip"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="3dip" >
|
2010-04-06 15:54:51 -04:00
|
|
|
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
<TextView
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/keyId"
|
2013-09-22 13:58:33 -04:00
|
|
|
android:layout_width="wrap_content"
|
2014-01-12 18:39:51 -05:00
|
|
|
android:layout_height="match_parent"
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
android:text="BBBBBBBB"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2013-09-22 13:58:33 -04:00
|
|
|
android:typeface="monospace" />
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/status"
|
|
|
|
android:layout_width="wrap_content"
|
2013-09-22 13:58:33 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="expired"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textStyle="italic" />
|
major restructuring, moving dialog, message, menu, option menu, task, type IDs into Id in a similar structure as the generated R, also introducing a BaseActivity class that almost all activities derive from, which generates some common dialogs, handles the progress update, thread management, and thread communication
also adding first draft of encrypt file activity, not very functional yet
2010-04-18 22:12:13 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
2013-09-22 13:58:33 -04:00
|
|
|
</LinearLayout>
|