我有不同的佈局。一些由xml創建。一些其他人通過代碼dinamically。當我在xml上時,我可以用「wrap_content」值設置寬度或高度。如何獲得相同的結果dinamically?這是我的動態TextView的片段。我需要刪除「final int width = 440;」並獲得「wrap_content」的相同值。怎麼樣?如何從代碼設置android:layout_width =「match_parent」?
final int width = 440;
final int height = textViewHeight;
final int top = getNewTop(height);
FrameLayout.LayoutParams layoutParams;
layoutParams = getLayoutParams(width, height, top);
TextView textView;
textView = new TextView(_registerNewMealActivity);
textView.setText(text);
textView.setLayoutParams(layoutParams);
_frameLayout.addView(textView);
你在谷歌看到WRAP_CONTENT? – sensorario