お世話になっています。
現状、下記のような構成のActivityを作っています。
mainactivityXML:「ツールバー」「Mainコンテンツ」「下部フラグメント」の3層からなる。
contentmainXML:「Mainコンテンツ」の中身。
現状、下部フラグメント内のボタンを押すと「Mainコンテンツ」の中身の情報をbitmapで取得する
処理を記述したいと思っています。
つまり、「contentmainXML」もしくはその中の「LinearLayout」の中身「MainLinear」の
スクリーンショットのbitmapを取得したいです。
現状、下記のKotlinコード
MainActivity
1 fun createBitmapFromView():Bitmap { 2 var rootContent = findViewById<LinearLayout> (R.id.MainLinear); 3 var screenView = rootContent.getRootView(); 4 screenView.setDrawingCacheEnabled(true); 5 var bitmap = Bitmap.createBitmap(screenView.getDrawingCache()); 6 screenView.setDrawingCacheEnabled(false); 7 return bitmap; 8 }
を試してみましたが「Deprecated in Java」の表示が出てうまく動きません。
下記参考サイトの「getScreenShot」関数を参考にしたのですが、何が悪いのかが分からない状態です。
https://www.androhub.com/take-a-screenshot-programmatically-in-android/
上記関数の使用ほうほうが 間違っているのか、別の方法を試した方がいいのかが分からないので
アドバイスを頂けませんでしょうか。
mainactivityXML
1<?xml version="1.0" encoding="utf-8"?> 2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 android:orientation="vertical"> 8 9 <androidx.coordinatorlayout.widget.CoordinatorLayout 10 android:layout_width="match_parent" 11 android:layout_height="match_parent" 12 android:layout_above="@+id/SM_bottomFrag" 13 android:layout_marginBottom="0dp" 14 tools:context=".MaintActivity"> 15 16 <com.google.android.material.appbar.AppBarLayout 17 android:id="@+id/app_bar" 18 android:layout_width="match_parent" 19 android:layout_height="wrap_content" 20 android:background="@color/zxing_status_text" 21 android:theme="@style/AppTheme.AppBarOverlay"> 22 //ツールバー 23 <androidx.appcompat.widget.Toolbar 24 android:id="@+id/toolbar" 25 android:layout_width="match_parent" 26 android:layout_height="?attr/actionBarSize" 27 android:background="#008577" 28 app:layout_collapseMode="pin" 29 app:layout_scrollFlags="scroll|enterAlways" 30 app:popupTheme="@style/AppTheme.PopupOverlay" 31 app:title="メイン画面" /> 32 33 </com.google.android.material.appbar.AppBarLayout> 34 //Mainコンテンツ 35 <include layout="@layout/contentmain" /> 36 37 </androidx.coordinatorlayout.widget.CoordinatorLayout> 38 //下部フラグメント 39 <fragment 40 android:id="@+id/SM_bottomFrag" 41 android:name="com.example.myapplication.BottomFragment" 42 android:layout_width="match_parent" 43 android:layout_height="wrap_content" 44 android:layout_alignParentBottom="true" 45 tools:layout="@layout/fragment_bottom" 46 android:layout_weight="1.0"/> 47</RelativeLayout>
contentmainXML
1<?xml version="1.0" encoding="utf-8"?> 2 <androidx.core.widget.NestedScrollView 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:app="http://schemas.android.com/apk/res-auto" 5 xmlns:tools="http://schemas.android.com/tools" 6 android:id="@+id/scroll" 7 android:layout_width="match_parent" 8 android:layout_height="match_parent" 9 app:layout_behavior="@string/appbar_scrolling_view_behavior" 10 tools:context=".MainActivity" 11 tools:showIn="@layout/activity_main"> 12 13 <LinearLayout 14 android:id="@+id/MainLinear" 15 android:layout_width="match_parent" 16 android:layout_height="wrap_content" 17 android:orientation="vertical"> 18 //この中にXMLの中身を記述 19 </LinearLayout> 20 </androidx.core.widget.NestedScrollView>
回答1件
あなたの回答
tips
プレビュー