MainActivity.java

Property File Write

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
    //Property 파일 쓰기
    public void WriteToProperty(){
        //property 파일
        File file = new File(Environment.getDataDirectory()+"/data/"+getPackageName(), "PropTest.properties");
 
        FileOutputStream fos = null;
        try{
            //property 파일이 없으면 생성
            if(!file.exists()){
                file.createNewFile();
            }
 
            fos = new FileOutputStream(file);
 
            //Property 데이터 저장
            Properties props = new Properties();
            props.setProperty("test" , "Property에서 데이터를 저장");   //(key , value) 로 저장
            props.store(fos, "Property Test");
 
            Log.d("prop""write success");
        }catch (IOException e){
            e.printStackTrace();
        }
    }
cs


Property File Read

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
    //Property 파일 읽기
    public String ReadToProperty(){
        //property 파일
        File file = new File(Environment.getDataDirectory()+"/data/"+getPackageName(), "PropTest.properties");
 
        if(!file.exists()){ return ""; }
 
        FileInputStream fis = null;
        String data = "";
        try{
            fis = new FileInputStream(file);
 
            //Property 데이터 읽기
            Properties props = new Properties();
            props.load(fis);
            data = props.getProperty("test""");  //(key , default value)
 
            Log.d("prop""read success");
        }catch(IOException e){
            e.printStackTrace();
        }
 
        return data;
    }
cs



activity_main.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp">
 
    <LinearLayout
        android:paddingBottom="8dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Property파일 읽기/쓰기" />
    </LinearLayout>
 
    <LinearLayout
        android:paddingBottom="8dp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
            android:id="@+id/btnPropWrite"
            android:text="Property 쓰기"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:onClick="mOnPropertyClick" />
        <Button
            android:id="@+id/btnPropRead"
            android:text="Property 읽기"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:onClick="mOnPropertyClick"  />
    </LinearLayout>
 
    <LinearLayout
        android:paddingBottom="8dp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="결과 : " />
        <TextView
            android:id="@+id/txtProperty"
            android:layout_weight="1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>
 
</LinearLayout>
 
cs



결과

쓰기 버튼을 누르면 Properties 파일에 데이터를 쓰고 읽기버튼을 누르면 Properties 파일에서 데이터를 읽어온다.

 


MainActivity.java

1
2
3
4
5
    public void mOnMenuClick(View v){
        //접근성 설정화면으로 이동
        Intent intent = new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS);
        startActivity(intent);
    }
cs



activity_main.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp">
 
    <LinearLayout
        android:paddingBottom="8dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="접근성 설정화면으로 이동" />
    </LinearLayout>
 
    <LinearLayout
        android:gravity="center_horizontal"
        android:paddingBottom="8dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
            android:text="접근성 이동"
            android:layout_gravity="center_horizontal"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:onClick="mOnMenuClick" />
    </LinearLayout>
 
</LinearLayout>
 
cs



결과

 


버튼클릭 -> 화면캡쳐 -> 캡쳐한 이미지를 갤러리에 추가


MainActivity.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
    //캡쳐버튼클릭
    public void mOnCaptureClick(View v){
        //전체화면
        View rootView = getWindow().getDecorView();
 
        File screenShot = ScreenShot(rootView);
        if(screenShot!=null){
            //갤러리에 추가
            sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(screenShot)));
        }
    }
 
    //화면 캡쳐하기
    public File ScreenShot(View view){
        view.setDrawingCacheEnabled(true);  //화면에 뿌릴때 캐시를 사용하게 한다
 
        Bitmap screenBitmap = view.getDrawingCache();   //캐시를 비트맵으로 변환
 
        String filename = "screenshot.png";
        File file = new File(Environment.getExternalStorageDirectory()+"/Pictures", filename);  //Pictures폴더 screenshot.png 파일
        FileOutputStream os = null;
        try{
            os = new FileOutputStream(file);
            screenBitmap.compress(Bitmap.CompressFormat.PNG, 90, os);   //비트맵을 PNG파일로 변환
            os.close();
        }catch (IOException e){
            e.printStackTrace();
            return null;
        }
 
        view.setDrawingCacheEnabled(false);
        return file;
    }
cs



activity_main.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rootLayout"
    android:gravity="center"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <TextView
        android:textSize="24dp"
        android:gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="화면을 캡쳐합니다." />
 
    <Button
        android:text="캡쳐하기"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="mOnCaptureClick"/>
 
    <ImageView
        android:src="@drawable/ic_launcher"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>
 


cs



AndroidManifest.xml

1
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
cs

저장소에 파일 쓰기 권한



결과

캡쳐하기 버튼을 누르면 화면을 캡쳐하여 갤러리에 추가한다.

 


+ Recent posts