카테고리 없음

[안드로이드] 안드로이드 tv app 개발하기

킹왕짱지지 2024. 8. 16. 01:49

 

1) 안드로이고 NoActivity로 시작

 

2) layout 디렉토리 만들어주고 tv 모드로 변경

 

- 안드로이드 tv는 Linear와 Relative layout을 권장함

acitivity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <fragment
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/main_fragment"/>

</LinearLayout>

 

3) mainifast 추

 

 

 

 

 

 


https://developer.android.com/training/tv/start/start?hl=ko

 

TV 앱 시작하기  |  Android Developers

이 페이지는 Cloud Translation API를 통해 번역되었습니다. TV 앱 시작하기 컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요. TV 앱은 스마트폰 및 태블릿용 앱과 동

developer.android.com

 

https://developer.android.com/design/ui/tv?hl=ko

 

TV | UI 디자인  |  Android Developers

Android TV용 TV 디자인 가이드라인을 확인하여 가정에서 가장 큰 화면에 맞는 시각적으로 멋지고 몰입도 높은 앱을 만들어 보세요. 스트리밍 앱, 피트니스 앱, 음악 앱 등 무엇을 설계하든 이 가이

developer.android.com

https://www.youtube.com/watch?v=o7tepG2DWLE