我得到了一段将我的db值解析为我的android活动的代码,但是我希望它的样式与现在的样式不同。
这是我的代码
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.leesverslag);
/* Werkt altijd */
// Create a crude view - this should really be set via the layout resources
// but since its an example saves declaring them in the XML.
LinearLayout rootLayout = new LinearLayout(getApplicationContext());
txt = new TextView(getApplicationContext());
rootLayout.addView(txt);
setContentView(rootLayout);
/* Werkt altijd */
// Set the text and call the connect function.
//txt.setText("Connecting...");
//call the method to run the data retrieval
txt.setText(getServerData(KEY_121));
}
我认为这就是我要说的,LinearLayout rootLayout = new LinearLayout(getApplicationContect());
但我不知道如何解决这个问题,所以它可以用我自己的布局。
新布局正在向我展示。
http://www.wvvzondag2.nl/android/leesverslag.php
{"introtext": "<p>my custom value text for a android application<\/p>"}
我想看看 我的Android应用程序的自定义值文本
这是我的PHP代码。
<?php
header('Content-type: application/json');
$user = '***';
$pswd = '***';
$db = '***';
$conn = mysql_connect('localhost', $user, $pswd);
mysql_select_db($db, $conn);
$sql = mysql_query("SELECT jos_content.introtext FROM jos_content, jos_categories WHERE jos_categories.id = '80' AND jos_content.state = '1' AND jos_categories.id = jos_content.catid AND jos_content.title = '".$_REQUEST['titel']."'");
while($row=mysql_fetch_assoc($sql))
$output[]=$row;
print str_replace('\/','/',json_encode($output));
mysql_close;
?>
有人可以帮我解决一下如何使用我自己的布局吗?
亲切的问候, 帕特里克