質問編集履歴

1

解決方法の記述

2017/06/13 03:35

投稿

takeji
takeji

スコア21

test CHANGED
File without changes
test CHANGED
@@ -29,3 +29,23 @@
29
29
  textView = (TextView) findViewById(R.id.hori0).findViewById(R.id.vert0);
30
30
 
31
31
  ```
32
+
33
+ ------------
34
+
35
+ 2017/6/13
36
+
37
+ ・解決方法
38
+
39
+ 以下のようにして動きました。ありがとうございます。
40
+
41
+ ```Java
42
+
43
+ Rid_parent = MyView.dinamic_Rid("hori" + num_parent);
44
+
45
+ Rid_child = MyView.dinamic_Rid("vert" + num_child);
46
+
47
+
48
+
49
+ tv_wideUse = (TextView) findViewById(Rid_parent).findViewById(Rid_child);
50
+
51
+ ```