このように、私は活動をしましたし、私はLayoutInflaterでそれにプログラム的にいくつかのボタンを作成することができます:(ボタン)
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Button newButton = (Button) inflater.inflate(R.layout.my_button, currentTableRow, false);
とmy_button.xml:
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/newButton"
android:layout_width="30dp"
android:layout_height="30dp"</Button>
正常に動作します。しかし、私の質問は、次のとおりです。my_button.xmlに幅と高さを渡す方法はありますか、そのビューを拡張するときに幅と高さを設定する方法はありますか?私はいつか "30dp"を設定したい、時には "45dp"などに設定することを意味します。事前におねがいします。
あなたはnewButton.setHeight(int)を探していますか? newButton.setWidth(int)? –
@ M.WaqasPervezはい、それを行うには何らかの方法があります。 – Beppe