0

我正在尝试为我的galaxy nexus 制作一个手电筒应用程序,但根据这个问题和它的答案,三星Galaxy Nexus 很难使用使其他手机工作的代码。我不知道我是否正确添加了表面视图。这是我的xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativeLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <Button
        android:id="@+id/buttonFlashlight"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:text="Torch-ON"  />
    <SurfaceView 
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:visibility="gone"/>
</RelativeLayout>
4

0 回答 0