4

描画アプリケーションがあり、描画した画像を保存する方法があります。しかし、保存ボタンで黒いビットマップ画像しか取得できません。問題はどこだ ?

私のxmlがあります

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/all"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black"
tools:context=".Circle" 
   >

<org.vkedco.mobappdev.draw_touch_drive_00001.krouzky
    android:id="@+id/pntr"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:tag="Painter" />



 <TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/textView3"
    android:layout_below="@+id/button4"
    android:layout_marginTop="50dp"
    android:text="value"
    android:textColor="@color/white" />


<Button
    android:id="@+id/button3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@+id/button2"
    android:text="Add" />


<Button
    android:id="@+id/button4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="Delete" />

  <Button
    android:id="@+id/button6"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:text="Save"
    android:layout_marginTop="45dp"
    android:layout_alignLeft="@+id/button3" />


  <Button
    android:id="@+id/button5"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="Clear"
    android:layout_marginTop="45dp"
    android:layout_alignRight="@+id/button3" />

 <LinearLayout 
     android:orientation="vertical"
     android:layout_height="match_parent"
      android:id="@+id/linearLayout"
     android:layout_width="match_parent" />

そして私の主な活動:

public class aktivita extends Activity{
Button btn;
public LinearLayout mContent;
krouzky mTicTacToeView = null;
public static String tempDir;
public File mypath;
 public static Bitmap mBitmap;
public static int width;
public static int height;
public static float x;
public static float y;
public static float X;
public static float Y;
public static double vzdalenost;
 public String current = null;
 private String uniqueId;
 public krouzky mSignature;
 public View mView;




public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.zaznam_ran);      
   krouzky.t = 0;






   File directory = new File(Environment.getExternalStorageDirectory() + "/Images");
   if(!directory.exists())

       directory.mkdir();

   uniqueId = getTodaysDate() + "_" + getCurrentTime();
   current = uniqueId + ".png";


   mypath= new File(directory,current);

   mContent = (LinearLayout) findViewById(R.id.linearLayout);

   mSignature = new krouzky(this, null);
   mSignature.setBackgroundColor(Color.TRANSPARENT);
   mContent.addView(mSignature, LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);

   mView = mContent;





    Display display = getWindowManager().getDefaultDisplay();
     width = (display.getWidth());
     height = (display.getHeight());        
    mTicTacToeView = (krouzky) this.findViewById(R.id.pntr);





     Button btn6 = (Button) findViewById(R.id.button6);

        btn6.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                    Log.v("log_tag", "Panel Saved");

                        mView.setDrawingCacheEnabled(true);
                       save(v);





                }


        });

}
     private boolean prepareDirectory()
    {
        try
        {
            if (makedirs())
            {
                return true;
            }
            else 
            {
                return false;
            }
        } 
        catch (Exception e)
        {
            e.printStackTrace();
            Toast.makeText(this, "Could not initiate File System.. Is Sdcard mounted properly?", 1000).show();
            return false;
        }
    }

    private boolean makedirs()  
    {
        File tempdir = new File(tempDir);
        if (!tempdir.exists())
            tempdir.mkdirs();

        if (tempdir.isDirectory())
        {
            File[] files = tempdir.listFiles();
            for (File file : files)
            {
                if (!file.delete())
                {
                    System.out.println("Failed to delete " + file);
                }
            }
        }
        return (tempdir.isDirectory());
    }   

保存方法

    public  void save(View v)
    {
        Log.v("log_tag", "Width: " + v.getWidth());
        Log.v("log_tag", "Height: " + v.getHeight());
        if(mBitmap == null)
        {
            mBitmap =  Bitmap.createBitmap (width, height, Bitmap.Config.RGB_565);
        }
        Canvas canvas = new Canvas(mBitmap);
        try
        {

            FileOutputStream mFileOutStream = new FileOutputStream(mypath);

            v.draw(canvas);
            mBitmap.compress(Bitmap.CompressFormat.PNG, 90, mFileOutStream);
            mFileOutStream.flush();
            mFileOutStream.close();


        }
        catch(Exception e)
        {
            Log.v("log_tag", e.toString());
        }
    }

私の問題は解決しましたが、細かい点が 1 つあります。xml を変更すると、アプリケーションがダウンします。これに。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/rl"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black"
tools:context=".Circle" >

<org.vkedco.mobappdev.draw_touch_drive_00001.krouzky
    android:id="@+id/pntr"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:tag="Painter" />

<Button
    android:id="@+id/button3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@+id/button2"
    android:text="Add" />


<Button
    android:id="@+id/button4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="Delete" />

  <Button
    android:id="@+id/button6"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:text="Save"
    android:layout_marginTop="45dp"
    android:layout_alignLeft="@+id/button3" />


  <Button
    android:id="@+id/button5"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="Clear"
    android:layout_marginTop="45dp"
    android:layout_alignRight="@+id/button3" />

<LinearLayout 
     android:orientation="vertical"
     android:layout_height="match_parent"
      android:id="@+id/linearLayout"
     android:layout_width="match_parent" >

</LinearLayout>

<TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/button6"
    android:layout_marginTop="21dp"
    android:text="value"
    android:textColor="@color/blue" />

4

4 に答える 4

3

これを試してください: - 親ビューを見つけます

RelativeLayout holder = (RelativeLayout) findViewById(R.id.all);

- そして、電話して loadBitmapFromView(holder)ください。

public static Bitmap loadBitmapFromView(View v) {
    DisplayMetrics dm = getResources().getDisplayMetrics(); 
    v.measure(MeasureSpec.makeMeasureSpec(dm.widthPixels, MeasureSpec.EXACTLY),
            MeasureSpec.makeMeasureSpec(dm.heightPixels, MeasureSpec.EXACTLY));
    v.layout(0, 0, v.getMeasuredWidth(), v.getMeasuredHeight());
    ((RelativeLayout) v).setGravity(Gravity.CENTER);
    Bitmap returnedBitmap = Bitmap.createBitmap(v.getMeasuredWidth(),
            v.getMeasuredHeight(), Bitmap.Config.ARGB_8888);
    Canvas c = new Canvas(returnedBitmap);
    v.draw(c);

    return returnedBitmap;
}
于 2013-08-28T13:32:32.917 に答える
2

実際には、メソッドでボタン btn6のビュー (v) を渡しています -またはでsave(v)あるリニア レイアウト オブジェクトを渡します。これで問題が解決しますmcontentmViewsave(mContent)

この方法も試すことができます-

メソッドで親レイアウトまたはビューを渡します-

 Bitmap file = save(mcontent);

 Bitmap save(View v)
   {
    Bitmap b = Bitmap.createBitmap(v.getWidth(), v.getHeight(), Bitmap.Config.ARGB_8888);
    Canvas c = new Canvas(b);
    v.draw(c);
    return b;
   }
于 2013-08-28T13:23:54.167 に答える
0

GroupView を拡張する cutom コンポーネントを作成し、このメソッドを使用してこのレイアウトをビットマップに保存しました。

    public Bitmap createBitmap() {
    //Log.d("Pin", "Image W ["+this.getWidth()+"] x H ["+this.getHeight()+"]");
    Bitmap b = Bitmap.createBitmap(this.getWidth(), this.getHeight(), Bitmap.Config.RGB_565);       
    Canvas c = new Canvas(b);

    this.draw(c);

    return b;
}

お役に立てば幸いです。レイアウトを保存したい場合は、保存したいレイアウト全体でこれを変更する必要があります

于 2013-08-28T14:15:07.300 に答える