Je suis deveoping Android v2.2 app.
J'ai un fragment.
Dans l' onCreateView(...)
de rappel de mon fragment de classe, je me gonfler une mise en page de fragment comme ci-dessous:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.login, null);
return view;
}
Le ci-dessus gonflé fichier de mise en page est (login.xml):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Username" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Username" />
</LinearLayout>
Je voudrais mettre un paddingTop
de ce qui précède <LinearLayout>
élément , et je veux le faire en Java code au lieu de le faire en xml.
Comment définir paddingTop
de <LinearLayout>
dans mon fragment de la classe Java code ??