Rozwijam aplikację na Androida 2.2.
Mam fragment .
W onCreateView(...)
wywołaniu zwrotnym mojej klasy fragmentów nadmuchuję układ do fragmentu, jak poniżej:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.login, null);
return view;
}
Powyższy plik układu jest zawyżony (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>
Chciałbym ustawić paddingTop
na powyższy <LinearLayout>
element i chcę to zrobić w kodzie Java zamiast w XML.
Jak ustawić paddingTop
, aby <LinearLayout>
w moim fragmentu kodu Java klasy ??
view
jest już LinearLayout, w tym przypadku nie trzeba go ponownie znajdować. Biorąc to pod uwagę, jest to jednak wyjątkowy.
findViewById
a następnie wywołaćsetPadding
.