Page 291 - MDP2022-3
P. 291

tools:ignore="OnClick"  />
            <VideoView
            android:id="@+id/videoView"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            app:layout_constraintBottom_toTopOf="@+id/guideline"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"  />

            </androidx.constraintlayout.widget.ConstraintLayout>





            AndroidMainfest.xml
            <?xml  version="1.0"  encoding="utf-8"?>
            <manifest  xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            package="com.example.a777">
            <uses-permission  android:name="android.permission.INTERNET"/>
            <uses-permission  android:name="android.permission.READ_EXTERNAL_STORAGE"/>
            <uses-permission  android:name="android.permission.CALL_PHONE"  />
            <uses-permission  android:name="android.permission.DIAL_PHONE"  />

            <application
            android:allowBackup="true"
            android:dataExtractionRules="@xml/data_extraction_rules"
            android:fullBackupContent="@xml/backup_rules"
            android:icon="@drawable/cctv"
            android:label="@string/app_name"
            android:roundIcon="@drawable/cctv"
            android:supportsRtl="true"
            android:theme="@style/Theme.777"
            tools:targetApi="31">
            <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
            <action  android:name="android.intent.action.MAIN"  />

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

            </manifest>





            <앱  이름  지정  코드>


            String.xml
            <resources>
            <string  name="app_name">CCTV</string>
            </resources>
   286   287   288   289   290   291   292   293   294   295   296