Ich entwickle Android v2.2 App.
Ich habe ein Fragment .
Beim onCreateView(...)
Rückruf meiner Fragmentklasse füge ich dem Fragment ein Layout wie folgt hinzu:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.login, null);
return view;
}
Die oben aufgeblasene Layoutdatei lautet (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>
Ich möchte ein paddingTop
auf das obige <LinearLayout>
Element setzen, und ich möchte es im Java- Code tun, anstatt es in XML zu tun.
Wie stellt man paddingTop
auf <LinearLayout>
in meinem Fragment Java - Klasse Code ??
view
ist bereits das LinearLayout, in diesem Fall muss es nicht erneut gefunden werden. Angesichts dessen ist dies jedoch etwas Besonderes.
findViewById
und dann aufrufensetPadding
können.