0

我的程序是这样的

`

public class InfoWifiActivity<Intent> extends Activity {
    TableRow tr;
    TextView temp;

     public void onCreate(Bundle savedInstanceState) {
        wifi.startScan();
        tr = new TableRow(this);
        temp = new TextView(this);

        IntentFilter i = new IntentFilter(); 
        i.addAction(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION); 
        registerReceiver(new BroadcastReceiver(){ 

                @Override
                public void onReceive(Context context,
                        android.content.Intent intent) {
                              temp.setText("SSID");
                              temp.setPadding(0,0,3,0);
                              tr.addView(temp);
}
}
}, i );
}
}

`

但是当涉及到 tr.addView(temp);

任何人都可以帮助我吗?在此先感谢。

4

1 回答 1

0

尝试设置TextView的高度和宽度,然后尝试。

tr.addView(temp,intWIDTH,intHEIGHT);
于 2012-05-10T16:51:09.060 回答