ボタンのテキストをプログラムで設定する方法を知っている人はいますか?
問題は、メイン レイアウト (setContentView) からこれを呼び出しているのではなく、asynctask の後に膨張したビューで呼び出していることです。
Button mButton=(Button)findViewById(R.id.contact);
mButton.setText("number");
ボタンを呼び出している私のレイアウトはこちら
<Button
android:id="@+id/contact"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/address"
android:layout_toLeftOf="@+id/badge"
android:background="@drawable/ic_btn_call"
android:textSize="10dp"
android:textStyle="bold"
android:textColor="@color/white"/>
ここで私の見解は膨らんでいます
ClubInfo = LayoutInflater.from(getBaseContext()).inflate(R.layout.clubinfocell,
null);
TextView TeamNameText = (TextView) ClubInfo.findViewById(R.id.TeamName);
TeamNameText.setText(teamName);
TextView AddressText = (TextView) ClubInfo.findViewById(R.id.address);
AddressText.setText(address1);
Button mButton=(Button)ClubInfo.findViewById(R.id.contact);
mButton.setText(telephone);