Разработка мобильных приложений. Соколова В.В. - 168 стр.

UptoLike

Составители: 

168
android:gravity="right"
android:layout_marginRight="10px"
/>
<EditText
android:id="@+id/label"
android:layout_weight="0.7"
/>
</TableRow>
<TableRow>
<TextView
android:text="URL:"
android:layout_weight="0.3"
android:gravity="right"
android:layout_marginRight="10px"
/>
<EditText
android:id="@+id/url"
android:layout_weight="0.7"
/>
</TableRow>
<TableRow>
<Button
android:id="@+id/btn_ok"
android:text="Ok"
android:layout_weight="0.5"
android:layout_margin="20px"
/>
<Button
android:id="@+id/btn_cancel"
android:text="Cancel"
android:layout_weight="0.5"
android:layout_margin="20px"
/>
</TableRow>
</TableLayout>
Файл EditItemActivity.java выглядит следующим
образом:
package learn.android.lab2;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class EditItemActivity extends Activity
{
private EditText labelField;