首先在这里发帖,所以要提前为任何错误道歉。
我正在尝试添加一些按钮作为相机预览的叠加层,所有内容都按预期工作,只是按钮变得透明,无论我尝试什么时我都希望它们不透明。
这就是我如何夸大布局:
LayoutInflater inflater = getLayoutInflater();
View controls = inflater.inflate(R.layout.test, null);
LayoutParams layoutParamsControl = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
this.addContentView(controls, layoutParamsControl);
这就是控件的xml文件的样子:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/button_capture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:text="Capture" />
<Button
android:id="@+id/button_mapview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:text="Map" />
</FrameLayout>
</LinearLayout>
我的问题是,是否有人知道为什么我的按钮变得透明以及如何解决它?
答案 0 :(得分:0)
尝试添加颜色作为背景,如android:background =“#ffffff”,并相应地添加将显示的文本颜色,如android:textColor =“#000000”。