この次のセットアップは機能しません。理由は誰にもわかりません (フラグメントでカスタム サーフェス ビューの例を見つけることができないようです)。
私の surfaceView クラスは、現時点では中空です:
class MySurfaceView extends SurfaceView implements Runnable{
public MySurfaceView(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
@Override
public void run() {
// TODO Auto-generated method stub
}
}
フラグメントの XML は次のようになります。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout2"
android:layout_width="500dp"
android:layout_height="600dp"
android:layout_gravity="fill"
android:background="#000000" >
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<com.example.android.fragments.MySurfaceView
android:id="@+id/surfaceview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
そして、OnCreateView の実際の Fragment 自体で、次のように呼び出します。
return inflater.inflate(R.layout.article_view, container, false);
これがうまくいかない理由はありますか?
それはXMLと関係があるので、私がそうするとき
<SurfaceView
android:id="@+id/surfaceview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
その後、正常に動作します。