aboutsummaryrefslogtreecommitdiff
path: root/res/layout/edit_channels_item.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/edit_channels_item.xml')
-rw-r--r--res/layout/edit_channels_item.xml78
1 files changed, 0 insertions, 78 deletions
diff --git a/res/layout/edit_channels_item.xml b/res/layout/edit_channels_item.xml
deleted file mode 100644
index 3dafa50e..00000000
--- a/res/layout/edit_channels_item.xml
+++ /dev/null
@@ -1,78 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 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.
--->
-
-<!-- A channel in the list. -->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:focusable="true" >
-
- <LinearLayout
- android:id="@+id/item_container"
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="@dimen/edit_channels_item_height"
- android:paddingLeft="@dimen/side_panel_padding_left"
- android:gravity="left|center_vertical" >
-
- <CheckBox
- android:id="@+id/check_box"
- android:layout_height="match_parent"
- android:layout_width="wrap_content"
- android:gravity="left|center_vertical"
- android:paddingLeft="@dimen/option_item_padding_left"
- android:focusable="false"
- android:fontFamily="@string/font" />
-
- <!-- This is "gone" for now, since we don't have channel icons. -->
- <ImageView android:id="@+id/channel_image_view"
- android:layout_width="90dip"
- android:layout_height="match_parent"
- android:layout_weight="0"
- android:paddingLeft="10dip"
- android:paddingRight="0dip"
- android:visibility="gone" />
-
- <ImageView android:id="@+id/channel_source_view"
- android:layout_width="60dip"
- android:layout_height="match_parent"
- android:layout_weight="0"
- android:paddingLeft="10dip"
- android:paddingRight="0dip"
- android:scaleType="center"
- android:visibility="gone" />
-
- <TextView
- android:id="@+id/channel_text_view"
- android:layout_width="match_parent"
- android:layout_height="?android:attr/listPreferredItemHeight"
- android:gravity="center_vertical"
- android:paddingLeft="0dip"
- android:paddingRight="10dip"
- android:singleLine="true"
- android:ellipsize="end"
- android:marqueeRepeatLimit="1"
- android:textSize="@dimen/option_item_text_size"
- android:textColor="@color/side_panel_item_text" />
- </LinearLayout>
-
- <View
- android:id="@+id/divider"
- android:layout_width="match_parent"
- android:layout_height="1.5dp"
- android:background="@color/side_panel_divider" />
-</LinearLayout> \ No newline at end of file