如何將基本的灰色/黑色全息背景添加到TextView
和SeekBar
。兩者都覆蓋在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>
如何選擇我的活動當前使用的背景顏色? – multiholle
@multiholle:你能簡單解釋一下嗎?你需要動態背景嗎? –
根據主題的不同,背景可能較亮或較暗。我如何獲得當前使用的顏色? – multiholle