no message
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.mogo.module.v2x.scenario.scene.road;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.Log;
|
||||
import android.view.LayoutInflater;
|
||||
import android.widget.RelativeLayout;
|
||||
|
||||
import com.mogo.module.v2x.R;
|
||||
|
||||
public class V2XRoadVideoWindow extends RelativeLayout {
|
||||
private static final String TAG = "V2XRoadVideoWindow";
|
||||
|
||||
public V2XRoadVideoWindow(Context context) {
|
||||
super(context);
|
||||
initView(context);
|
||||
}
|
||||
|
||||
private void initView(Context context) {
|
||||
Log.d(TAG, "初始化视频播放器");
|
||||
// 填充布局
|
||||
LayoutInflater.from(context).inflate(R.layout.window_road_video, this);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user