0

如何将基本的灰色/黑色全息背景添加到 aTextView和 a SeekBar。两者都覆盖在FrameLayout. 由于缺少背景,目前两者都几乎不可见。

<?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>
4

2 回答 2

1

将您的 XML 布局修改为此..我为文本视图添加了紫色,为搜索栏添加了红色。根据您的需要更改

<?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>
于 2013-10-21T11:04:34.743 回答
-1
android:background="@drawable/yourdrawable"
于 2013-10-21T11:02:31.660 回答