Programming/android2020. 6. 7. 11:23

키즈카페에 와서 느긋하게 에러를 읽으면서 하는데 음.. 그러니까 0,0 으로 뛰니 제한을 걸어주면 되는건가 싶어서

 

메뉴를 찾아보니 해당 기능을 발견! 하나하나 지정해주니 에러는 사라진다.

 

constraint를 버튼 하나마다 위에서, 왼쪽에서 이런식으로 다 지정을 해주었더니

 

너.. 어디로 가니 -ㅁ-?

 

+

 

Posted by 구차니
Programming/android2020. 6. 7. 11:11

되긴 한데.. 경고가 뜨네?

이거 말고 이전에 MainActivity.java 에서 강제로 방향 설정할때도 경고 뜨던데.. 그냥 무시해도 되려나?

 

 

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.rpiremotecontrol">

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity"
            android:screenOrientation="landscape"
            >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

[링크 : https://alvinalexander.com/.../how-do-i-make-my-android-app-display-landscape-mode-only/]

Posted by 구차니
Programming/android2020. 6. 7. 10:52

오전 10:47 Emulator: qemu-system-i386: warning: TSC frequency mismatch between VM (2494335 kHz) and host (2494333 kHz), and TSC scaling unavailable

 

위와 같은 에러가 발생해서 확인해보니

AVD Manager에서 Wipe Data 하면 된다고 한다.

일단 저장 공간이 4기가 먹던게 2.4로 줄어들고 처음부터 구동하더니 잘 된다.

 

[링크 : https://askubuntu.com/questions/1005268/qemu-frequency-mismatch-on-kubuntu]

Posted by 구차니
Programming/android2020. 6. 7. 10:50

요즘 개발을 안했더니 바보가 된 느낌?

일단 github에 저장소 생성하고

git remote에 등록을 한다고 해서 저장소가 끌려오는게 아닌데 착각을 해서 헤매는 중

 

안드로이드 스튜디오 git 사용하려면

 

github에서

1. git repository 생성

안드로이드 스튜디오에서

2. git remote 등록

3. git pull

4. git branch 실행 remote 의 origin/master 으로 rebase

5. git push

 

[링크 : https://comoi.io/235]

Posted by 구차니

켜자마다 알림이 와서 후다닥 받기 ㅋ

 

Posted by 구차니

전화 앱이 전화 보다 통화목록이 우선되는 이 딜레마는?

어떻게 보면 더 편하긴 하다고 할 수도 있겠지만

옵션으로 제공하는 것도 아니고 무조건 통화목록에서 다이얼로 가야 하다니

그 핑계가 참 이상하구만 -_-

 

아내의 노트9 에서는 다이얼이 바로 뜨는데

왜 S7만.. 이런겨...

 

[링크 : https://r1.community.samsung.com/t5/갤럭시-S/전화-앱-누르면-다이얼이-바로-뜨게-좀-해주세요/td-p/1034]

'개소리 왈왈 > 모바일 생활' 카테고리의 다른 글

핸드폰 요금 방어 성공?  (0) 2020.06.11
핸드폰 액정 복원용 유리 접착제  (0) 2020.06.08
NFC 유심?  (0) 2020.06.01
액정이 콕! ㅠㅠ  (0) 2020.05.31
중고 갤럭시 s7 구매  (0) 2020.05.30
Posted by 구차니
개소리 왈왈/독서2020. 6. 4. 22:20

페미니즘 때문에 안 좋게 보이게 된 단어들이 보여서 그런가

무진장 보면서 몸이 꼬이고 아니꼽게 보이는 책 (성감수성 이라던가?)

 

아무튼 이수역 사건이랑 겹쳐서 기분이 꽁기꽁기 하게 만드는 구만

[링크 :https://news.v.daum.net/v/20200604191958186]

Posted by 구차니
Programming/android2020. 6. 3. 22:55

AndroidManifest.xml 에 internet 사용하도록 추가하는 위치

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.rpirc">

    <uses-permission android:name="android.permission.INTERNET"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

[링크 : https://slobell.com/blogs/48]

 

build.gradle (Module: app) 에 추가해야 한다.

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.squareup.retrofit2:retrofit:2.6.1'
    implementation 'com.squareup.retrofit2:converter-gson:2.6.1'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

[링크 : https://re-build.tistory.com/14]

 

일단은 빌드 까진 문제 없으니.. 됐고

이제 인터페이스 구현하면 되려나?

 

[링크 : https://medium.com/@joycehong0524/android-studio-retrofit2-기본-사용법-retrofit-의문점-풀어헤치기...d]

2020/05/29 - [Programming/android] - 안드로이드 retrofit 사용하기

Posted by 구차니

오늘도 어제 주워온 KTX 열차 장난감 고치는데 쓰고

부러진 피규어 목 붙이는데 쓰고 최고네 ㅋ

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

3주 만에 온 택배  (2) 2020.06.21
이사 준비  (2) 2020.06.20
응급실 다녀옴  (6) 2020.05.30
NFC 태그 (신비 아파트 피규어)  (0) 2020.05.28
강림/하리 피규어 구매 ㅋㅋ  (0) 2020.05.27
Posted by 구차니
embeded/odroid2020. 6. 2. 17:54

모니터 소비전력을 생각을 안하고 있었는데..

오늘 생각나서 재보니

 

MOTV LED21fs 1920x1080 해상도로 DVI 입력시

16.6W 정도 소비된다.

 

XU4로 동영상 재생시 6W 정도니까.

22W 정도 소비..

 

i5-2500, HD7850 데탑이

전원 꺼졌을때 1.57W

idle 상태에서 60~70W

fluid motion 적용해서 동영상 돌리면 110~120W 먹네..

 

아무튼 그 덕에.. 전기세가 많이 억제 된건가?

 

+

2020.06.04

노트북을 켜보니 idle 에서 24W

로드 조금 걸리면 35W 오락가락 하는데 이정도면.. 오드로이드로 낑낑대면서 쓸 바에는

모니터 + XU4 보다 약간 더 먹는 노트북이 더 이득인가?

아무튼 노트북이 데탑 보다 반 이상 조금 먹네..

'embeded > odroid' 카테고리의 다른 글

odroid c2 ubuntu 20.04 64bit  (0) 2021.08.23
odroid c2  (0) 2021.08.22
odroid XU4 H.265 가능이라니  (0) 2020.05.08
odroid xu4 ADC 2CH  (0) 2020.03.28
odroid xu4 image 테스트  (0) 2020.03.28
Posted by 구차니