我在一個alert對話框裏面設置了一個線性佈局,其中我基本上有幾個Edit文本。AlertDialog裏面的LinearLayout不滾動
我面臨的問題是我無法向下滾動查看動態創建的每個編輯文本。
這裏的片段:
Context context = this.getApplicationContext();
LinearLayout layoutCreateMerch = new LinearLayout(context);
layoutCreateMerch.setOrientation(LinearLayout.VERTICAL);
layoutCreateMerch.setVerticalScrollBarEnabled(true);
final AlertDialog.Builder alert = new AlertDialog.Builder(Act.this);
alert.setTitle("Submit");
final EditText Name = new EditText(Act.this);
final EditText Desc = new EditText(Act.this);
...
...
所以,我如何添加在運行時在此警告對話框的線性佈局滾動視圖?
我想LinearLayouts不需要滾動條/視圖,但是這對我來說並不適用:
此外,膨脹這將是其他選擇,但現在..我可以做一些事情嗎?
感謝您的閱讀.. :)
請分享您用於將LinearLayout添加到對話框的代碼 – fiddler