nullポインターをスローするsetContentViewに問題がありました。
私のメインフレームでは、画面の約 50% を占める小さな SurfaceView を取得しました。ロングクリックするとSurfaceViewがフルスクリーンになるメソッドを実装したかったのです。私はこのようにしました:
final FrameLayout frame = (FrameLayout) findViewById(R.id.frame_layout);
frame.setOnLongClickListener(new OnLongClickListener() {
boolean clicked = false;
@Override
public boolean onLongClick(View v) {
if (clicked){
clicked = false;
(MyActivity.this).setContentView(R.layout.main);
} else {
clicked = true;
(MyActivity.this).setContentView(R.layout.fullScreen);
}
return true;
}
});
誰かがこの問題を解決する方法を教えてくれますか?
ご挨拶
<?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"
android:gravity="right"
android:orientation="vertical"
android:weightSum="1"
android:background="@drawable/background_new" >
<TextView
android:text="@string/measures"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/text_measures"
android:textColor="#ff444444"
android:layout_marginTop="30dp"
android:layout_marginLeft="10dp"
/>
<ImageButton
android:contentDescription="@string/desc_edge"
android:layout_toRightOf="@id/text_measures"
android:id="@+id/edges_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/edges_black"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginBottom="30dp"
android:onClick="edge_handler"
android:background="@null"
/>
<FrameLayout
android:background="@xml/border"
android:id="@+id/camera_preview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
android:layout_marginBottom="35dp"
android:layout_marginRight="200dp"
android:layout_marginTop="80dp"
android:layout_below="@id/text_measures"
>
</RelativeLayout>
FrameLayoutのように見えることは知っていますが、だまされてはいけません。これは他の誰かによって行われたもので、実際にはSurfaceViewです。