Я пытаюсь написать свой собственный View
, и у меня проблема с LayoutParams
.
Идея состоит в том, чтобы расширить ViewGroup
(LinearLayout
)
public class MyView extends LinearLayout{
public MyView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyView(Context context) {
super(context);
}
public void putContent(){
setOrientation(HORIZONTAL);
LayoutInflater inflater = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
for (int i = 0; i < 5; i++){
View view = inflater.inflate(R.layout.item, null);
TextView tv = (TextView)view.findViewById(R.id.item_text);
tv.setText("Item " + i);
addView(view);
}
}
}
Как видите, putContent
метод раздувает элементы и добавляет к моему виду. Вот элемент макета
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF">
<TextView android:text="TextView"
android:id="@+id/item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"/>
</LinearLayout>
А главное расположение экрана
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android_layout_weight="1"
android:text="@string/hello"
/>
<my.test.MyView
android:id="@+id/my_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android_layout_weight="1"
/>
</LinearLayout>
И код активности
public class Start extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
MyView myView = (MyView)findViewById(R.id.my_view);
myView.putContent();
}
}
Вот скриншот того, что я получаю
Итак, проблема в том, что атрибуты корневого элемента элемента игнорируются
android:layout_width="match_parent"
android:layout_height="match_parent"
Но в результате я хочу получить что-то вроде этого (я получаю этот результат при замене addView(view);
на эту строку)
addView(view, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1F));
Итак, вопрос: как я могу достичь этого результата без жестко запрограммированных LayoutParams?
Спасибо за любую помощь!
обновление
Я также смотрю на переменные view
в режиме отладки - mLayoutParams
равен null
, и стал недействительным, когда я добавляю надутый view
в родительский элемент с addView(view, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1F));
.
Но mLayoutParams
потомка только что загруженного представления не равно нулю.
Почему LayoutParams только корневого элемента в макете xml игнорируются, когда представление завышено?