我想知道如何在我的布局上的viewVideo上放置一个播放按钮。我是否还必须在布局上放置一些东西才能使用?
这是我的代码:
#define STR_SIZE 8
wchar_t str[STR_SIZE];
while (fgetws(str, STR_SIZE, str)) {
// lop off the potential \n if desired
size_t len = wcslen(str);
if (len > 0 && str[len-1] == L'\n') {
str[--len] = L'\0';
}
...
}

答案 0 :(得分:0)
使用FrameLayout。
指定您可以在FrameLayout子项中看到的drawable。并使用Foreground Drawable绘制带有drawable的按钮:
myFrameLayout.setForegroundDrawable(myPlayDrawable);