目前,我正在尝试使用Android NDK和Live555构建流媒体应用。但我目前的问题更令人困惑。我创建了一个CustomPreviewClass来显示实际的相机图片。但不幸的是,当我尝试访问视图时,方法findViewById()始终返回null。为什么?有人有想法吗?
这是我的活动:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
preview = (CameraPreview) findViewById(R.id.surfaceView1); // returns null
if (preview == null) Log.d("Test", "Preview is null");
final Button buttonStart = (Button) findViewById(R.id.buttonStart);
buttonStart.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
try {
startRecording();
} catch (IOException e) {
e.printStackTrace();
}
buttonStart.setEnabled(false);
}
});
final Button buttonStop = (Button) findViewById(R.id.buttonStop);
buttonStop.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
stopRecording();
buttonStart.setEnabled(true);
}
});
}
只是旁注:按钮的findViewById()工作正常......
activity_main.xml:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="de.douglasmedia.LiveCam.MainActivity" >
<de.douglasmedia.LiveCam.views.CameraPreview
android:id="@+id/surfaceView1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</de.douglasmedia.LiveCam.views.CameraPreview>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:id="@+id/buttonStart"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Start" >
</Button>
<Button
android:id="@+id/buttonStop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Stop" >
</Button>
</LinearLayout>
CameraPreview:
...
public CameraPreview(Context context, AttributeSet attrs) {
this(context);
}
public CameraPreview(Context context) {
super(context);
SurfaceHolder holder = getHolder();
holder.addCallback(this);
}
@Override
public void surfaceCreated(SurfaceHolder holder) {
synchronized (surfaceCreationSync) {
surfaceCreatedHolder = holder;
surfaceCreationSync.notifyAll();
}
}
...
感谢您的帮助!
答案 0 :(得分:0)
我已经为自己解决了这个问题。问题是,我在CameraPreview类中错过了带有3个参数的构造函数。所以,我添加了这个构造函数,一切正常......