diff options
Diffstat (limited to 'res/layout/act_console.xml')
-rw-r--r-- | res/layout/act_console.xml | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/res/layout/act_console.xml b/res/layout/act_console.xml deleted file mode 100644 index 36c73b4..0000000 --- a/res/layout/act_console.xml +++ /dev/null @@ -1,90 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- - ConnectBot: simple, powerful, open-source SSH client for Android - Copyright (C) 2007-2008 Kenny Root, Jeffrey Sharkey - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. ---> -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:background="#ff000000" - > - - <TextView - android:id="@android:id/empty" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:text="No hosts currently connected" - android:textAppearance="?android:attr/textAppearanceMedium" - android:gravity="center" - /> - - <ViewFlipper - android:id="@+id/console_flip" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - /> - - <RelativeLayout - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:layout_alignParentBottom="true" - android:padding="5dip" - > - - <EditText - android:id="@+id/console_password" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:password="true" - android:singleLine="true" - android:visibility="gone" - /> - - <TextView - android:id="@+id/console_prompt" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:visibility="gone" - android:textAppearance="?android:attr/textAppearanceMedium" - android:paddingRight="100dip" - /> - - <Button - android:id="@+id/console_prompt_no" - android:text="No" - android:paddingTop="5dip" android:paddingBottom="10dip" - android:paddingLeft="40dip" android:paddingRight="40dip" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentRight="true" - android:visibility="gone" - /> - - <Button - android:id="@+id/console_prompt_yes" - android:text="Yes" - android:paddingTop="5dip" android:paddingBottom="10dip" - android:paddingLeft="40dip" android:paddingRight="40dip" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_toLeftOf="@id/console_prompt_no" - android:visibility="gone" - /> - - </RelativeLayout> - - -</RelativeLayout>
\ No newline at end of file |