I have a class that extends SurfaceView nested within the class that controls it. I have a fairly complex layout XML file, but I am adding the custom SurfaceView class via code to a pre-existing RelativeLayout.
Here is my battle.xml:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rlMain"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:id="@+id/rlCanvas"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</RelativeLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:orientation="vertical"
android:weightSum="10" >
<RelativeLayout
android:id="@+id/rlBattleStats"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="9.2"
android:gravity="top"
android:orientation="vertical" >
//removed UI elements
</RelativeLayout>
<LinearLayout
android:id="@+id/llFirstRow"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:orientation="horizontal"
android:weightSum="3" >
//removed UI elements
</LinearLayout>
<LinearLayout
android:id="@+id/llSecondRow"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:orientation="horizontal"
android:weightSum="3" >
//removed UI elements
</LinearLayout>
</LinearLayout>
</RelativeLayout>
Here is my class that extends SurfaceView:
public class CanvasView extends SurfaceView implements Runnable{
Thread bcThread = null;
SurfaceHolder holder;
public CanvasView(Context context) {
super(context);
holder = getHolder();
}
public void run() {
while(animate){
if(!holder.getSurface().isValid()){
continue;
}
Canvas c = holder.lockCanvas();
c.setBitmap(bg1);
c.drawBitmap(bg2, 0, 0, null);
holder.unlockCanvasAndPost(c);
}
}
public void pause() {
animate = false;
while(true){
try{
bcThread.join();
}
catch(InterruptedException e){
e.printStackTrace();
}
break;
}
bcThread = null;
}
public void resume() {
animate = true;
bcThread = new Thread(this);
bcThread.start();
}
}
and finally, here is the other relevant code, found outside of the above class (a lot of irrelevant code removed):
public class Battle extends Activity implements OnClickListener {
RelativeLayout battleCanvas, battleUI;
CanvasView cv;
Bitmap bg1, bg2, bg3, bg4, bg5, bg6;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.battle);
initUI();
}
private void initUI() {
battleCanvas = (RelativeLayout) findViewById(R.id.rlCanvas);
battleUI = (RelativeLayout) findViewById(R.id.rlBattleStats);
initCanvas();
update();
}
private void initCanvas() {
animate = true;
switch(backgroundImage){
case 14:
bg1 = BitmapFactory.decodeResource(getResources(), R.drawable.canvas_test);
bg2 = BitmapFactory.decodeResource(getResources(), R.drawable.canvas_test2);
break;
default:
bg1 = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
bg2 = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
cv = new CanvasView(this);
battleCanvas.addView(cv);
}
I'm not sure where I'm going wrong, but in its current state, no bitmaps are visible despite the thread running fine. Should I be doing something else other than just adding the CanvasView as a child to the layout? Should I be adding a CanvasView in the xml file?
I am clearly missing something small here.