You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
4.8 KiB
133 lines
4.8 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2017 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:id="@+id/build_intent_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="@dimen/smallMargin"
|
|
android:background="@drawable/card_background"
|
|
android:orientation="vertical"
|
|
android:padding="@dimen/medMargin">
|
|
|
|
<TextView
|
|
android:id="@+id/build_intent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/build_intent"
|
|
android:textAppearance="@style/title"/>
|
|
|
|
<TextView
|
|
android:id="@+id/flags_hint"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/build_intent_caption"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/suggest_list_item"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/doubleListItem"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="@dimen/smallMargin"
|
|
android:gravity="center_vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_weight="1">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/suggest_enable_text"
|
|
android:textAppearance="@style/normal"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/suggest_description_text"
|
|
android:textAppearance="@style/caption"/>
|
|
</LinearLayout>
|
|
|
|
<Switch
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/suggestion_switch"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/build_intent_flags"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/smallMargin"/>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dividerHeight"
|
|
android:layout_marginVertical="@dimen/smallMargin"
|
|
android:background="@drawable/divider"/>
|
|
|
|
<TextView
|
|
android:id="@+id/textView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginVertical="@dimen/smallMargin"
|
|
android:text="@string/target_activity"/>
|
|
|
|
<RadioGroup
|
|
android:id="@+id/radioGroup_launchMode"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:checkedButton="@+id/radio_launchMode_standard"
|
|
android:orientation="vertical"/>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dividerHeight"
|
|
android:layout_marginVertical="@dimen/smallMargin"
|
|
android:background="@drawable/divider"/>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginVertical="@dimen/smallMargin"
|
|
android:text="@string/start_mode"/>
|
|
|
|
<RadioGroup
|
|
android:id="@+id/radioGroup_startMode"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:checkedButton="@+id/radio_launchMode_standard"
|
|
android:orientation="vertical">
|
|
|
|
<RadioButton
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="@dimen/fullMargin"
|
|
android:id="@+id/start_normal"
|
|
android:text="@string/start_normal"
|
|
android:checked="true"/>
|
|
|
|
<RadioButton
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="@dimen/fullMargin"
|
|
android:id="@+id/start_for_result"
|
|
android:text="@string/start_for_result"/>
|
|
</RadioGroup>
|
|
</LinearLayout> |