Android の RelativeLayout、TableLayout、TableRow、および 6 つのウィジェット (4 つの TextView と 2 つのボタン) を含む画面があります。
タブレットサイズのエミュレータで表示すると全てのウィジェットが入っていますが、スマホサイズのエミュレータ(5インチ)に移すと2つのボタンのうち1.5個が右側に消えてしまいます。
RelativeLayout がそれらすべてを画面に表示することを望んでいました。どうすればこれを達成できますか?
私の RelativeLayout は次のように宣言されています。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp" >
テーブルレイアウト:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/cancelTable"
android:layout_below="@+id/pageheader"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
テーブル行:
<TableRow
android:id="@+id/tableRow1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dip" >
TextView と Buttons は、Activity の onCreate で開始されます。
table = (TableLayout) findViewById(R.id.cancelTable);
table.removeAllViewsInLayout();
TableRow tr=new TableRow(Edit.this);
tr.removeAllViewsInLayout();
int flag = 1;
if(flag == 1) {
TextView b11=new TextView(Edit.this);
b11.setText("Name");
b11.setTextColor(Color.RED);
b11.setTextSize(15);
tr.addView(b11);
TextView b4 = new TextView(Edit.this);
b4.setPadding(10, 0, 0, 0);
b4.setTextSize(15);
b4.setText("Text");
b4.setTextColor(Color.RED);
tr.addView(b4);
TextView b5=new TextView(Edit.this);
b5.setPadding(10, 0, 0, 0);
b5.setText("Number");
b5.setTextColor(Color.RED);
b5.setTextSize(15);
tr.addView(b5);
TextView b7=new TextView(Edit.this);
b7.setPadding(10, 0, 0, 0);
b7.setText("Time");
b7.setTextColor(Color.RED);
b7.setTextSize(15);
tr.addView(b7);
TextView b8=new TextView(Edit.this);
b8.setPadding(10, 0, 0, 0);
b8.setText("Delete");
b8.setTextColor(Color.RED);
b8.setTextSize(15);
tr.addView(b8);
TextView b9=new TextView(Edit.this);
b9.setPadding(10, 0, 0, 0);
b9.setText("Edit");
b9.setTextColor(Color.RED);
b9.setTextSize(15);
tr.addView(b9);
table.addView(tr);
final View vline = new View(Edit.this);
vline.setLayoutParams(new
TableRow.LayoutParams(TableRow.LayoutParams.FILL_PARENT, 2));
vline.setBackgroundColor(Color.RED);
table.addView(vline);
flag=0;
}
com.eyal.sms.db.SMS sms;
for(int i=0; i<allSched.size(); i++) {
tr = new TableRow(Edit.this);
tr.removeAllViewsInLayout();
sms = allSched.get(i);
TextView b = new TextView(Edit.this);
String str = String.valueOf(sms.getToContact());
b.setText(str != null ? str : "");
b.setTextColor(Color.WHITE);
b.setTextSize(15);
tr.addView(b);
TextView b1=new TextView(Edit.this);
b1.setPadding(10, 0, 0, 0);
b1.setTextSize(15);
String str1 = sms.getText();
if (str1.length() > 20)
str1 = str1.substring(0, 20);
b1.setText(str1);
b1.setTextColor(Color.WHITE);
tr.addView(b1);
TextView b2 = new TextView(Edit.this);
b2.setPadding(10, 0, 0, 0);
String str2 = String.valueOf(sms.getToNumber());
b2.setText(str2);
b2.setTextColor(Color.WHITE);
b2.setTextSize(15);
tr.addView(b2);
TextView b3 = new TextView(Edit.this);
b3.setPadding(10, 0, 0, 0);
String str3 = String.valueOf(sms.getTime());
b3.setText(str3);
b3.setTextColor(Color.WHITE);
b3.setTextSize(15);
tr.addView(b3);
Button delete = new Button(Edit.this);
delete.setText("Delete");
DeleteButtonListener dbl = new DeleteButtonListener();
dbl.setSMS(sms);
delete.setOnClickListener(dbl);
tr.addView(delete);
Button edit = new Button(Edit.this);
edit.setText("Edit");
EditButtonListener ebl = new EditButtonListener();
ebl.setSMS(sms);
edit.setOnClickListener(ebl);
tr.addView(edit);
table.addView(tr);
final View vline1 = new View(Edit.this);
vline1.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT, 1));
vline1.setBackgroundColor(Color.WHITE);
table.addView(vline1); // add line below each row
}
私は何が欠けていますか?RelativeLayout (または Android の他のレイアウト) は、すべてのウィジェットがすべてのサイズのハードウェアで画面上に表示されるか、少なくともスクロール可能であることを保証できますか?