TextureView(カメラのプレビュー)の上に垂直方向の線を重ねたいです。
Framelayoutなどを使用してみましたがうまくいかず、方法があれば教えていただきたいです。
よろしくお願いいたします。
AutoTextureView
1<com.example.myapplication.video.AutoFitTextureView 2 android:id="@+id/texture" 3 android:layout_width="wrap_content" 4 android:layout_height="wrap_content" 5 android:foregroundGravity="center" />
垂直線↓
view
1<LinearLayout 2 android:layout_width="match_parent" 3 android:layout_height="match_parent" 4 android:orientation="horizontal"> 5 6 <View 7 android:id="@+id/view2" 8 android:layout_width="0sp" 9 android:layout_height="wrap_content" 10 android:layout_weight="4.9" /> 11 12 <View 13 android:id="@+id/view3" 14 android:layout_width="0dp" 15 android:layout_height="wrap_content" 16 android:layout_weight="0.2" 17 android:background="#FFC107" 18 /> 19 20 <View 21 android:id="@+id/view4" 22 android:layout_width="0dp" 23 android:layout_height="wrap_content" 24 android:layout_weight="4.9" /> 25 </LinearLayout>
試行コード
<FrameLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <com.example.myapplication.video.AutoFitTextureView android:id="@+id/texture" android:layout_width="wrap_content" android:layout_height="wrap_content" android:foregroundGravity="center" /> <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" android:orientation="horizontal"> <View android:id="@+id/view" android:layout_width="0sp" android:layout_height="match_parent" android:layout_weight="6.4" /> <View android:id="@+id/view0" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="0.2" android:background="#FFC107" /> <View android:id="@+id/view00" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="3.4" /> </LinearLayout>
回答1件
あなたの回答
tips
プレビュー