私はアンドロイドプログラミングが初めてで、質問があります:
特定のアクティビティ リソースを持つ android レイアウト (LinearLayout) に android:id 属性を設定しないと、一部のデバイス (特に Galaxy s3 とメモ) で「残念ながら停止しました」というエラーが発生し、他のデバイスではエラーが発生しませんか?
ボタンをタップして secondpage.xml を開始すると、一部のデバイスでエラーが表示されます。
secondpage.xml
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background1"
android:orientation="vertical"
tools:context=".secondpage" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="45dp"
android:background="#306754"
android:orientation="horizontal" >
<Button
android:id="@+id/btn_back"
android:layout_width="50dp"
android:layout_height="45dp"
android:layout_marginLeft="10dp"
android:background="@drawable/ic_back2"
android:minHeight="75dp"
android:minWidth="75dp" />
<TextView
android:id="@+id/shive_parsi_textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="60dp"
android:text="page header"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="top"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/background1"
android:orientation="vertical" >
<TextView
android:id="@+id/textView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="60dp"
android:text="test text"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#C4A97E"
android:textSize="21sp" />
</LinearLayout>
</ScrollView>
</LinearLayout>
上記のコードにはこの属性がありません:
android:id="@+id/LinearLayout1"