Android v2.2 앱을 개발 중입니다.
나는이 조각을 .
onCreateView(...)
내 조각 클래스 의 콜백에서 다음과 같이 조각을 레이아웃에 팽창시킵니다.
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.login, null);
return view;
}
위의 팽창 된 레이아웃 파일은 (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>
나는를 설정하려는 paddingTop
위의 <LinearLayout>
요소, 그리고 나는 그것을하고 싶은 자바 코드 대신 XML로 그것을 할.
어떻게 설정 paddingTop
에 <LinearLayout>
내 조각 자바 클래스 코드에 ??
view
이미 LinearLayout이므로이 경우 다시 찾을 필요가 없습니다. 그러나 이것은 특별한 것입니다.
findViewById
호출 할 수 있도록해야setPadding
합니다.