2017-07-02 10 views
0

以下の投稿されたレイアウトでは、レイアウト全体を横断し、レイアウト内の各ビューのIDを表示しようとしています。私は以下試した は方法ビューの一意のidsを取得する方法

vg.getId() 

でコードを掲示したが、それはあなたがレイアウトで各ビューの一意のIDを取得する方法を教えてくださいでしょうレイアウト

の各ビューで同じIDが表示されます

出力

ew_1 I/ActMain: vg.getId() :2131427422 
07-02 14:48:25.383 32647-32647/com.example.alteenos.test_traversethroughaview_1 I/ActMain: vg.getId() :2131427422 
07-02 14:48:25.383 32647-32647/com.example.alteenos.test_traversethroughaview_1 I/ActMain: vg.getId() :2131427422 
07-02 14:48:25.383 32647-32647/com.example.alteenos.test_traversethroughaview_1 I/ActMain: vg.getId() :2131427422 

layouトン

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/actMain_mainContainer" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical" 
tools:context="com.example.altenos.test_traversethroughaview_1.ActMain"> 

    <Button 
     android:id="@+id/actMain_btn_change" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/decision_postponed" /> 

     <LinearLayout 
      android:id="@+id/actMain_linlay_1" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 
      <Button 
       android:id="@+id/actMain_btn_yes" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:text="@string/decision_accepted" /> 
      <Button 
       android:id="@+id/actMain_btn_no" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:text="@string/decision_rejected" /> 
     </LinearLayout> 

     <TextView 
      android:id="@+id/actMain_tv_display" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" /> 

     <LinearLayout 
      android:id="@+id/actMain_linlay_2" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 
     </LinearLayout> 

コード

private int countViews(ViewGroup vg) { 
    int childCount = vg.getChildCount(); 
    for (int i = 0; i < childCount; i++) { 
     Log.i(TAG, "vg.getId() :" + vg.getId()); 

     //if (vg.getChildAt(i) instanceof ViewGroup) { 
      //childCount += countViews((ViewGroup) vg.getChildAt(i)); 
     //} 
    } 
    return childCount; 
} 

答えて

3

あなたはViewGroup、いない子のIDをログに記録されています。

1

あなたが見るでないのViewGroup

private int countViews(ViewGroup vg) { 
    int childCount = vg.getChildCount(); 
    for (int i = 0; i < childCount; i++) { 
     Log.i(TAG,"vg.getId() :",vg.getChildAt(i).getId()); 
     //Log.i(TAG, "vg.getId() :" + vg.getId()); Not this one 

     //if (vg.getChildAt(i) instanceof ViewGroup) { 
      //childCount += countViews((ViewGroup) vg.getChildAt(i)); 
     //} 
    } 
    return childCount; 
} 
を記録する必要があります
関連する問題