๋ฐ์ํ
์๋๋ก์ด๋ ๋ฉํฐํฐ์น ๊ธฐ๋ฅ์ ๋ง๋ ๋ฐฉ๋ฒ 2๊ฐ์ง์ ๋๋ค.
1๋ฒ์ ๋ ์ด์์ ๋ณ๋ก ๋๋์ด์ ๋ฉํฐํฐ์น ๊ธฐ๋ฅ์ ๋ง๊ณ ์ถ์ ๋ ์ฌ์ฉํ๊ณ ,
2๋ฒ์ App ์ ์ฒด์ ๋ฉํฐํฐ์น ๊ธฐ๋ฅ์ ๋ง์๋ ์ฌ์ฉํ๋ฉด ๋ฉ๋๋ค.
1. xml
๋ฒํผ or ํฐ์น or ํด๋ฆญ ๊ธฐ๋ฅ์ ๋ด๊ณ ์๋ ๋ทฐ์ ๋ ์ด์์์ android:splitMotionEvents="false"๋ฅผ ์ ์ฉํด์ฃผ์ธ์.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:splitMotionEvents="false"
android:orientation="horizontal" >
2. values > styles.xml
styles.xml์ ์๋์ ๊ฐ์ด ํ ๋ง๋ฅผ ์ ์ฉํด ์ฃผ๊ณ AndroidManifest์ ๋ช ์ํด์ค๋๋ค.
<style name="splitTheme" parent="@android:style/Theme.NoTitleBar">
<!-- ๋ฉํฐํฐ์น ๋ง๊ธฐ -->
<item name="android:splitMotionEvents">false</item>
</style>
AndroidManifest.xml
<application
android:theme="@style/splitTheme" >
</application>