如何在Android中制作1px surfaceview

时间:2012-10-21 09:33:55

标签: java android surfaceview

我正在尝试为我的Galaxy nexus制作一个手电筒应用程序,但根据这个question并且答案是,三星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>

0 个答案:

没有答案