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.
68 lines
2.8 KiB
68 lines
2.8 KiB
<?xml version="1.0" encoding="utf-8"?><!--
|
|
Copyright (C) 2008 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.
|
|
-->
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:paddingTop="12dip"
|
|
android:paddingBottom="12dip">
|
|
|
|
<ImageView
|
|
android:id="@android:id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="20dip" />
|
|
|
|
<!-- Dummy -->
|
|
<SeekBar
|
|
android:id="@*android:id/seekbar"
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="left"
|
|
android:paddingLeft="16dip"
|
|
android:text="@string/set_backlight"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<SeekBar
|
|
android:id="@+id/backlight_seek"
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="@dimen/volume_seekbar_side_margin"
|
|
android:layout_weight="1"
|
|
android:paddingTop="2dip" />
|
|
|
|
<TextView
|
|
android:id="@+id/backlight_text"
|
|
android:layout_width="50dip"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="0dip"
|
|
android:textColor="#ff7f7c"
|
|
android:textSize="20sp"
|
|
android:typeface="monospace" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |