modify uidemo1 to fullscreen

This commit is contained in:
houzh 2023-08-12 16:04:05 +08:00
parent c43a0e0883
commit 43a1676229
2 changed files with 2 additions and 1 deletions

View File

@ -64,6 +64,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textview1"
android:background="#112233"
android:text="@string/teststring1"/>
</LinearLayout>

View File

@ -152,7 +152,7 @@ MediaWindow::MediaWindow(int x,int y,int w,int h):Window(x,y,w,h){
}
Window*CreateMultiMedia(){
MediaWindow*w=new MediaWindow(0,0,800,640);
MediaWindow*w=new MediaWindow(0,0,-1,-1);
w->setText("Media");
//LOGD("CreateMultiMedia");
return w;