在按任何项目之前必须先按下布局

时间:2014-10-08 08:49:03

标签: android android-layout

我正在开发一个Android应用程序,其登录活动为main-activity,在启动后,当打算按下其中的任何元素时,没有任何反应,但是当再次按下它时,它会起作用,我试图找出发生了什么,所以,我发现它是在触摸任何内部之前必须先触摸的布局,也适用于一个访问,而另一个我要再次按布局,所以,它需要我在每个元素交互之前进行第一次布局触摸。

活动布局结构:

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

    <ImageView />

    <LinearLayout>

        <LinearLayout>

            <TextView />

            <EditText />
        </LinearLayout>

        <LinearLayout>

            <TextView />

            <EditText />
        </LinearLayout>

        <Button />

        <TextView />
    </LinearLayout>

    <LinearLayout>

        <ImageButton />

        <ImageButton />

        <ImageButton />
    </LinearLayout>

</LinearLayout>

我如何在 manifest.xml 中声明活动

   <activity
        android:name="com.example.Login"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
        android:windowSoftInputMode="stateHidden" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

0 个答案:

没有答案