-1
這是我的項目XML佈局流式佈局中的Java文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/flowLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<!-- enter code here -->
</LinearLayout>
我需要訪問它在JAVA文件它應該包含在3個文本視圖3句...
public class MainActivity extends Activity {
private View layout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
findViewById();
//enter code here
}
private void findViewById() {
View layout = findViewById(R.id.flowLayout);
//enter code here
}
}
我不明白,是什麼問題? – 2013-04-04 06:55:03
我需要在3個文本視圖在JAVA文件中給3個句子,而不是在XML ....使用流佈局 – user2109950 2013-04-04 07:00:01
看到給出的答案。 – 2013-04-04 07:02:47