tôi có một main.xml layout xml như thế nàyKhai EditText như TextView trong Android
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:gravity="center" >
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="text"
android:textColor="#000"
android:textSize="16dp"
android:id="@+id/edtxt"
android:gravity="center|top|left"/>
</RelativeLayout>
và tôi tuyên bố này trong hoạt động của tôi như thế này
public class MyActivity extends Activity {
private TextView txt = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
txt= (TextView)findViewById(R.id.edtxt);
}
}
nhưng tôi không có vấn đề trong hoạt động của tôi . tại sao?
Câu trả lời tuyệt vời dude .. –
+1 cảm ơn vì một câu trả lời tuyệt vời –