格式问题

时间:2014-07-30 02:37:29

标签: java android android-layout android-activity

我遇到了格式化问题。这个简单的问题变得有点复杂;我收到错误,因为我的代码格式不正确。我试过,选择我的代码,然后右键单击 - >来源 - >格式但是不成功的很好。

以下是完整的代码,

public class ProfileCreation extends Activity {

    private static final int RESULT_LOAD_IMAGE = 1;
    FrameLayout layout;
    Button save;

    @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_profile_creation);
           save=(Button) findViewById(R.id.btnConfirm);
            String picturePath = PreferenceManager.getDefaultSharedPreferences(this).getString("picturePath", "");
            if(!picturePath.equals(""))
            {
               ImageView imageView = (ImageView) findViewById(R.id.profilePicturePreview);
               imageView.setImageBitmap(BitmapFactory.decodeFile(picturePath));
            }        

            Button buttonLoadImage = (Button) findViewById(R.id.btnPictureSelect);
            buttonLoadImage.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View arg0) {
                    Intent i = new Intent(
                            Intent.ACTION_PICK,
                             android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
                    startActivityForResult(i, RESULT_LOAD_IMAGE);
                }
            });        
            save.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View arg0) {
                    // Locate the image in res > 
                    Bitmap bitmap = BitmapFactory.decodeFile("picturePath");
                    // Convert it to byte
                    ByteArrayOutputStream stream = new ByteArrayOutputStream();
                    // Compress image to lower quality scale 1 - 100
                    bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);

                    Object image = null;
                    try {
                        String path = null;
                        image = readInFile(path);
                    }
                    catch(Exception e) { 
                        e.printStackTrace();
                    }

                    // Create the ParseFile
                    ParseFile file = new ParseFile("picturePath", (byte[]) image);
                    // Upload the image into Parse Cloud
                    file.saveInBackground();

                    // Create a New Class called "ImageUpload" in Parse
                    ParseObject imgupload = new ParseObject("Image");

                    // Create a column named "ImageName" and set the string
                    imgupload.put("Image", "picturePath");


                    // Create a column named "ImageFile" and insert the image
                    imgupload.put("ImageFile", file);

                    // Create the class and the columns
                    imgupload.saveInBackground();

                    // Show a simple toast message

                    SeekBar seekBar = (SeekBar)findViewById(R.id.seekBar1); 
                    final TextView seekBarValue = (TextView)findViewById(R.id.seekbarvalue); 

                    seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener(){ 

                @Override 
                public void onProgressChanged(SeekBar seekBar, int progress, 
                  boolean fromUser) { 
                 // TODO Auto-generated method stub 
                 seekBarValue.setText(String.valueOf(progress)); 
                } 

                @Override 
                public void onStartTrackingTouch(SeekBar seekBar) { 
                 // TODO Auto-generated method stub 
                } 

                @Override 
                public void onStopTrackingTouch(SeekBar seekBar) { 
                 // TODO Auto-generated method stub 
                } 
            });
        }
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK
                && null != data) {
            Uri selectedImage = data.getData();
            String[] filePathColumn = { MediaStore.Images.Media.DATA };

            Cursor cursor = getContentResolver().query(selectedImage,
                    filePathColumn, null, null, null);
            cursor.moveToFirst();

            int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
            String picturePath = cursor.getString(columnIndex);
            cursor.close();

            ImageView imageView = (ImageView) findViewById(R.id.profilePicturePreview);
            imageView.setImageBitmap(BitmapFactory.decodeFile(picturePath));
        }
    }

    private byte[] readInFile(String path) throws IOException {
        // TODO Auto-generated method stub
        byte[] data = null;
        File file = new File(path);
        InputStream input_stream = new BufferedInputStream(new FileInputStream(
                file));
        ByteArrayOutputStream buffer = new ByteArrayOutputStream();
        data = new byte[16384]; // 16K
        int bytes_read;
        while ((bytes_read = input_stream.read(data, 0, data.length)) != -1) {
            buffer.write(data, 0, bytes_read);
        }
        input_stream.close();
        return buffer.toByteArray();

    }
}

特别是,在以下几行:

@Override 
public void onStopTrackingTouch(SeekBar seekBar) { 
 // TODO Auto-generated method stub 
} 
});
}}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

非常感谢您的帮助

1 个答案:

答案 0 :(得分:1)

只是查看你的代码,你的开放式和紧密的大括号似乎并不匹配。我会单独浏览所有这些,并确保打开的支架与正确的关闭支架匹配。例如。

在你说话的最后一行:

onStopTrackingTouch(SeekBar seekBar) { // TODO Auto-generated method stub } }); }}

你还没有关闭onclicklistener,因为你的“保存”按钮带有相应的});而你也有}},这也是糟糕的格式。

根据您的IDE(我知道Android Studio和Eclipse会这样做),如果您单击一个大括号,它将显示相应的大括号的位置。除此之外,您的代码似乎没有任何问题。

编辑:请参阅下面的代码的固定版本:

public class ProfileCreation extends Activity {

    private static final int RESULT_LOAD_IMAGE = 1;
    FrameLayout layout;
    Button save;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_profile_creation);
        save = (Button) findViewById(R.id.btnConfirm);
        String picturePath = PreferenceManager.getDefaultSharedPreferences(this).getString("picturePath", "");
        if (!picturePath.equals("")) {
            ImageView imageView = (ImageView) findViewById(R.id.profilePicturePreview);
            imageView.setImageBitmap(BitmapFactory.decodeFile(picturePath));
        }


        Button buttonLoadImage = (Button) findViewById(R.id.btnPictureSelect);
        buttonLoadImage.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View arg0) {
                Intent i = new Intent(
                        Intent.ACTION_PICK,
                        android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
                startActivityForResult(i, RESULT_LOAD_IMAGE);
            }
        });
        save.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View arg0) {
                // Locate the image in res > 
                Bitmap bitmap = BitmapFactory.decodeFile("picturePath");
                // Convert it to byte
                ByteArrayOutputStream stream = new ByteArrayOutputStream();
                // Compress image to lower quality scale 1 - 100
                bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);

                Object image = null;
                try {
                    String path = null;
                    image = readInFile(path);
                } catch (Exception e) {
                    e.printStackTrace();
                }

                // Create the ParseFile
                ParseFile file = new ParseFile("picturePath", (byte[]) image);
                // Upload the image into Parse Cloud
                file.saveInBackground();

                // Create a New Class called "ImageUpload" in Parse
                ParseObject imgupload = new ParseObject("Image");

                // Create a column named "ImageName" and set the string
                imgupload.put("Image", "picturePath");


                // Create a column named "ImageFile" and insert the image
                imgupload.put("ImageFile", file);

                // Create the class and the columns
                imgupload.saveInBackground();

                // Show a simple toast message

                SeekBar seekBar = (SeekBar) findViewById(R.id.seekBar1);
                final TextView seekBarValue = (TextView) findViewById(R.id.seekbarvalue);

                seekBar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

                    @Override
                    public void onProgressChanged(SeekBar seekBar, int progress,
                                                  boolean fromUser) {
                        // TODO Auto-generated method stub 
                        seekBarValue.setText(String.valueOf(progress));
                    }

                    @Override
                    public void onStartTrackingTouch(SeekBar seekBar) {
                        // TODO Auto-generated method stub 
                    }

                    @Override
                    public void onStopTrackingTouch(SeekBar seekBar) {
                        // TODO Auto-generated method stub 
                    }
                });
            }
        });
    }

        @Override
        protected void onActivityResult(int requestCode, int resultCode, Intent data) {
            super.onActivityResult(requestCode, resultCode, data);

            if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK
                    && null != data) {
                Uri selectedImage = data.getData();
                String[] filePathColumn = { MediaStore.Images.Media.DATA };

                Cursor cursor = getContentResolver().query(selectedImage,
                        filePathColumn, null, null, null);
                cursor.moveToFirst();

                int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
                String picturePath = cursor.getString(columnIndex);
                cursor.close();

                ImageView imageView = (ImageView) findViewById(R.id.profilePicturePreview);
                imageView.setImageBitmap(BitmapFactory.decodeFile(picturePath));

            }

        }

        private byte[] readInFile(String path) throws IOException {
            // TODO Auto-generated method stub
            byte[] data = null;
            File file = new File(path);
            InputStream input_stream = new BufferedInputStream(new FileInputStream(
                    file));
            ByteArrayOutputStream buffer = new ByteArrayOutputStream();
            data = new byte[16384]; // 16K
            int bytes_read;
            while ((bytes_read = input_stream.read(data, 0, data.length)) != -1) {
                buffer.write(data, 0, bytes_read);
            }
            input_stream.close();
            return buffer.toByteArray();

        }
    }