diff options
Diffstat (limited to 'res/layout/details.xml')
-rw-r--r-- | res/layout/details.xml | 159 |
1 files changed, 0 insertions, 159 deletions
diff --git a/res/layout/details.xml b/res/layout/details.xml deleted file mode 100644 index 482e567..0000000 --- a/res/layout/details.xml +++ /dev/null @@ -1,159 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2007 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:padding="10dip" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <LinearLayout - android:orientation="horizontal" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <TextView - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/details_title_label" - android:textSize="10sp" - /> - - </LinearLayout> - - <EditText - android:id="@+id/title" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:text="@string/details_title_text" - android:autoText="true" - android:capitalize="words" - android:textSize="10sp" - android:textColor="#FF661700" - /> - - <TextView - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:text="@string/details_description_label" - android:textSize="10sp" - /> - - <EditText - android:id="@+id/description" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:text="@string/details_description_text" - android:autoText="true" - android:capitalize="sentences" - android:textSize="10sp" - android:textColor="#FF661700" - /> - - <TextView android:id="@+id/tags_label" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:text="@string/details_tags_label" - android:textSize="10sp" - android:visibility="gone" - /> - - <EditText - android:id="@+id/tags" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:text="@string/details_tags_text" - android:textSize="10sp" - android:textColor="#FF661700" - android:autoText="false" - android:capitalize="none" - android:visibility="gone" - /> - - <LinearLayout android:id="@+id/categories" - android:orientation="horizontal" - android:visibility="gone" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <TextView - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/details_category_label" - android:textSize="10sp" - /> - - <Spinner android:id="@+id/category" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:drawSelectorOnTop="false" - android:textSize="10sp" - /> - </LinearLayout> - - <LinearLayout android:id="@+id/languages" - android:orientation="horizontal" - android:visibility="gone" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <TextView - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/details_language_label" - android:textSize="10sp" - /> - - <Spinner android:id="@+id/language" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:drawSelectorOnTop="false" - android:textSize="10sp" - /> - </LinearLayout> - - <LinearLayout - android:orientation="horizontal" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <RadioGroup android:id="@+id/publicprivate" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:orientation="horizontal"> - <RadioButton android:id="@+id/publicView" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:checked="false" - android:text="@string/details_publicView_text" - /> - - <RadioButton android:id="@+id/privateView" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:checked="false" - android:text="@string/details_privateView_text" - /> - </RadioGroup> - - <Button android:id="@+id/save" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/details_save_text" - android:layout_alignParentRight="true" - /> - </LinearLayout> -</LinearLayout> |