2016-03-21 53 views
1

我在垂直seekbar android中指定高度和寬度時遇到問題。我已指定的旋轉等於270在Seekbar中使用rotation = 270時無法正確指定高度和寬度Android

情況1:

寬度= 300dp和高度= WRAP_CONTENT

我得到高度和寬度等於300dp。

案例2

寬度= WRAP_CONTENT高度= 300dp

我得到高度等於WRAP_CONTENT和寬度等於300dp。

所以我的問題是我們如何指定高度,同時採用旋轉= 270

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    tools:context="com.example.puzzleup.ScrambleActivity"> 

    <SeekBar 
     android:layout_width="300dp" 
     android:layout_height="wrap_content" 
     android:layout_alignParentRight="true" 
     android:layout_centerVertical="true" 
     android:max="7" 
     android:rotation="270" /> 
</RelativeLayout> 

回答

相關問題