Home | History | Annotate | Download | only in values-sw640dp-port
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2010 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 <resources xmlns:android="http://schemas.android.com/apk/res/android">
     17     <style name="ReviewControlIcon">
     18         <item name="android:layout_height">32dp</item>
     19         <item name="android:layout_width">32dp</item>
     20         <item name="android:gravity">center</item>
     21         <item name="android:layout_centerVertical">true</item>
     22     </style>
     23     <style name="ReviewThumbnail">
     24         <!-- Thumbnail size calculation relies on the layout width. If this is
     25              changed to wrap_content or match_parent, the code should be changed
     26              as well. -->
     27         <item name="android:layout_width">130dp</item>
     28         <item name="android:layout_height">130dp</item>
     29         <item name="android:layout_alignParentRight">true</item>
     30         <item name="android:layout_alignParentBottom">true</item>
     31         <item name="android:layout_marginRight">20dp</item>
     32         <item name="android:layout_marginBottom">20dp</item>
     33     </style>
     34     <style name="SettingPopupWindow">
     35         <item name="android:layout_width">wrap_content</item>
     36         <item name="android:layout_height">wrap_content</item>
     37         <item name="android:layout_centerHorizontal">true</item>
     38         <item name="android:layout_alignParentBottom">true</item>
     39         <item name="android:layout_marginBottom">@dimen/setting_popup_right_margin</item>
     40         <item name="android:visibility">gone</item>
     41     </style>
     42     <style name="PanoViewHorizontalBar">
     43         <item name="android:background">#000000</item>
     44         <item name="android:alpha">1.0</item>
     45         <item name="android:layout_height">match_parent</item>
     46         <item name="android:layout_width">0dp</item>
     47         <item name="android:layout_weight">0.5</item>
     48     </style>
     49 </resources>
     50