2013-10-21 82 views
0

如何將基本的灰色/黑色全息背景添加到TextViewSeekBar。兩者都覆蓋在FrameLayout包含的相機預覽中。目前,由於缺少背景,兩者幾乎都是可見的。適用於Android版面的背景

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

    <FrameLayout 
     android:id="@+id/scanner_camera_preview" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" /> 

    <TextView 
     android:id="@+id/scanner_help_text" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:text="Den Zoom-Regler benutzen um den Barcode auszuwählen." /> 

    <SeekBar 
     android:id="@+id/scanner_camera_seek" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_above="@id/scanner_help_text" /> 

</RelativeLayout> 

回答

1

修改xml配置this..I添加紫色的文本視圖和紅色的搜索條。根據您的需求更改

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:orientation="vertical" > 

    <FrameLayout 
      android:id="@+id/scanner_camera_preview" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" /> 

    <TextView 
      android:id="@+id/scanner_help_text" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:background="@android:color/holo_purple" 
      android:text="Den Zoom-Regler benutzen um den Barcode auszuwählen." /> 

    <SeekBar 
      android:id="@+id/scanner_camera_seek" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_above="@id/scanner_help_text" 
      android:background="@android:color/holo_red_light"/> 

</RelativeLayout> 
+0

如何選擇我的活動當前使用的背景顏色? – multiholle

+0

@multiholle:你能簡單解釋一下嗎?你需要動態背景嗎? –

+0

根據主題的不同,背景可能較亮或較暗。我如何獲得當前使用的顏色? – multiholle

-1
android:background="@drawable/yourdrawable" 
+0

我不想添加背景圖片。 – multiholle

+0

你只需要將drawable更改爲一個顏色即可)... –